This endpoint returns paginated STIX 2.1 objects from a named collection. Use it to bulk-ingest indicators into your SIEM or TIP, or to poll incrementally for new objects using theDocumentation Index
Fetch the complete documentation index at: https://docs.socdefenders.ai/llms.txt
Use this file to discover all available pages before exploring further.
added_after parameter. Each page is returned as a STIX bundle, and pagination is driven by response headers rather than a cursor in the response body.
Endpoint
Method:GET https://www.socdefenders.ai/api/taxii2/api/collections/{id}/objects/
Authentication: Required — pass your API key in the Authorization header as a Bearer token.
Tier: Pro.
Path parameters
Collection ID obtained from
GET /api/taxii2/api/collections/. For example, all-iocs, ip-addresses, file-hashes, or cves.Query parameters
ISO 8601 timestamp. Returns only STIX objects added to the collection after this time. Use the value of the
X-TAXII-Date-Added-Last response header from your previous request to poll incrementally.Maximum number of STIX objects to return per page. The server may return fewer than the requested limit.
Pagination token. Use the value from the
X-TAXII-Date-Added-Last response header as the added_after value on your next request to continue paginating through results.Example request
Example response
Response fields
Always
bundle — the STIX 2.1 bundle type.Unique STIX bundle identifier in the format
bundle--<uuid>.STIX specification version. Always
2.1.Array of STIX 2.1 indicator objects contained in this page.
true if additional pages of objects are available. Use the response headers to paginate.Pagination token for the next page. Present only when
more is true.Response headers
| Header | Description |
|---|---|
X-TAXII-Date-Added-First | ISO 8601 timestamp of the earliest object added in this page. |
X-TAXII-Date-Added-Last | ISO 8601 timestamp of the latest object added in this page. Pass this as added_after on your next request to avoid re-fetching objects. |