Threat intelligence API / Reference / Entities

Entities endpoints

Threat actors, malware, tools, companies, products, CVEs, countries and industries, with profiles and the incidents they appear in.

GET /entities/search · GET /entities/{entity_type}/{entity_value}/related · GET /entities/{entity_type}/{entity_value}/cooccurring-cves · GET /entities/{category}/{entity_value} · GET /entities/trending

GET /entities/{entity_type}/{entity_value}/cooccurring-cves

Co-occurring CVEs for an entity · 1 credit per call

CVEs that co-occur with this entity in articles (mentioned alongside it), newest-first and paginated. This is the full set the search endpoint's `cve_count` reports — use it to page through every co-occurring CVE, not the capped co_entities bucket in the entity-detail response.

Query parameters

  • page: Page number (default 1)
  • limit: Results per page (default 20, max 100)

Parameters

NameInTypeRequiredMeaning
entity_typepathstringyes
entity_valuepathstringyes
pagequeryinteger
limitqueryinteger

Response 200 · CooccurringCvesResponse

FieldTypeMeaning
entity_type *string
entity_value *string
cves *array of CooccurringCveItem
total *integer
page *integer
limit *integer
pages *integer
curl -H "X-API-Key: $TC_KEY" \
  "https://threatcluster.io/api/public/v1/entities/{entity_type}/{entity_value}/cooccurring-cves"

GET /entities/{category}/{entity_value}

Entity detail · 1 credit per call

Get entity details with related clusters.

Path parameters

  • category: Entity type (cve, malware, apt-group, etc.)
  • entity_value: Entity value (URL-encoded)

Returns entity info, related clusters, and articles.

Parameters

NameInTypeRequiredMeaning
categorypathstringyes
entity_valuepathstringyes

Response 200 · EntityDetailsResponse

FieldTypeMeaning
entity *EntityInfo
overviewstring or null
recent_eventsstring or null
clustersarray or null
articlesarray or null
co_entitiesobject or null
co_entities_with_countsobject or null
aliasesarray or null
curl -H "X-API-Key: $TC_KEY" \
  "https://threatcluster.io/api/public/v1/entities/{category}/{entity_value}"