Skip to main content
GET
/
api
/
taxii2
/
api
/
collections
List collections
curl -H "Authorization: Bearer sk_live_..." \
  -H "Accept: application/taxii+json;version=2.1" \
  "https://socdefenders.ai/api/taxii2/api/collections/"
{
  "collections": [
    {
      "id": "soc-defenders-all",
      "title": "All IOCs",
      "description": "All indicators regardless of type",
      "can_read": true,
      "can_write": false,
      "media_types": [
        "application/stix+json;version=2.1"
      ]
    },
    {
      "id": "soc-defenders-network",
      "title": "Network IOCs",
      "description": "IPs, domains, URLs",
      "can_read": true,
      "can_write": false,
      "media_types": [
        "application/stix+json;version=2.1"
      ]
    },
    {
      "id": "soc-defenders-hashes",
      "title": "File Hashes",
      "description": "MD5/SHA1/SHA256/SHA512",
      "can_read": true,
      "can_write": false,
      "media_types": [
        "application/stix+json;version=2.1"
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.socdefenders.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

API key in X-API-Key header

Response

200 - application/taxii+json;version=2.1

List of collections

collections
object[]