v3

OpenAPI 3.1.02026-08-03124249.6 KB
Data access

Fetch Entity

Retrieve a single entity by its ID. The entity will be returned in full, with data from all datasets and with nested entities (adjacent passport, sanction and associated entities) included. If the entity ID has been merged into a different canonical entity, an HTTP redirect will be triggered.

Intro: entity data model.

get/entities/{entity_id}

Path parameters

entity_idstring required

ID of the entity to retrieve

Example:Q7747

ID of the entity to retrieve

Query parameters

nestedboolean

Response

Successful Response

idstring required
captionstring required
schemastring required
propertiesobject required
datasetsstring[]
referentsstring[]
targetboolean
first_seenstring
last_seenstring
last_changestring

Example response

{
  "id": "NK-A7z....",
  "caption": "John Doe",
  "schema": "LegalEntity",
  "properties": {
    "name": [
      "John Doe"
    ]
  },
  "datasets": [
    "us_ofac_sdn"
  ],
  "referents": [
    "ofac-1234"
  ],
  "first_seen": "2026-07-31T20:37:29.825277Z",
  "last_seen": "2026-07-31T20:37:29.825277Z",
  "last_change": "2026-07-31T20:37:29.825277Z"
}