v3
OpenAPI 3.1.02026-08-03124249.6 KBSimple entity search
Search endpoint for matching entities based on a simple piece of text, e.g. a name. This can be used to implement a simple, user-facing search. For proper entity matching, the multi-property matching API should be used instead.
Search queries can include field-specific fitlers, wildcards and fuzzy searches. See also: search API documentation.
Path parameters
Data source or collection name to scope the query to.
Data source or collection name to scope the query to.
Query parameters
Limit the results to entities that are part of at least one of the given datasets.
Limit the results to entities that are part of at least one of the given datasets.
Use the syntax field:value to filter on a specific field. Properties are indexed as fields named properties.birthDate:1985.
Use the syntax field:value to filter on a specific field. Properties are indexed as fields named properties.birthDate:1985.
Please specify a list of topics of concern, instead.
Please specify a list of topics of concern, instead.
Logic to use when combining multiple filters on the same field (topics, countries, datasets). Please specify AND for new integrations (to override a legacy default) and when building a faceted user interface.
Response
Successful Response
Example response
{
"limit": 20,
"total": {
"value": 42,
"relation": "eq"
},
"results": [
{
"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"
}
]
}