curl --request POST \
--url https://app.nex.ai/api/developers/v1/search \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"query": "john doe"
}
'{
"results": {
"person": [
{
"id": "1001",
"primary_value": "John Doe",
"matched_value": "John Doe",
"score": 0.95,
"entity_definition_id": "10"
}
],
"company": [
{
"id": "2001",
"primary_value": "Doe Industries",
"matched_value": "Doe Industries",
"score": 0.72,
"entity_definition_id": "11"
}
]
},
"errored_search_types": []
}Search across all records in the workspace. Results are grouped by object type (e.g., person, company). Partial results are returned if some search types fail.
curl --request POST \
--url https://app.nex.ai/api/developers/v1/search \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"query": "john doe"
}
'{
"results": {
"person": [
{
"id": "1001",
"primary_value": "John Doe",
"matched_value": "John Doe",
"score": 0.95,
"entity_definition_id": "10"
}
],
"company": [
{
"id": "2001",
"primary_value": "Doe Industries",
"matched_value": "Doe Industries",
"score": 0.72,
"entity_definition_id": "11"
}
]
},
"errored_search_types": []
}API key for authentication (format: "Bearer YOUR_API_KEY")
Search query
Search query (1-500 characters)
Search results grouped by type
Results grouped by object type (e.g., 'person', 'company')
Hide child attributes
Search types that encountered errors (partial results returned)