API ReferenceInteractive ReferenceEntities
Get entity by ID
Retrieve a single entity by UUID. Scoped to the caller's tenant.
Path Parameters
entity_id*string
Entity UUID.
Format
uuidHeader Parameters
x-tenant-id?|
authorization?|
Response Body
application/json
application/json
curl -X GET "https://loading/api/v1/entities/497f6eca-6276-4993-bfeb-53cbbbba6f08"{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"tenant_id": "34f5c98e-f430-457b-a812-92637d0c6fd0",
"vertical": "string",
"entity_type": "string",
"name": "string",
"description": "string",
"description_llm": "string",
"source_url": "string",
"source_type": "string",
"source_name": "string",
"source_id": "string",
"status": "string",
"vertical_data": {},
"embedding_status": "string",
"claim_status": "string",
"data_quality_score": 0,
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z"
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}Delete entity (soft)
Soft delete — sets status to 'archived'. Returns the archived entity. Archived entities are excluded from search results but remain in the database.
List entities
List entities with optional filters and cursor-based pagination. Supports full-text search via `q` parameter (uses `websearch_to_tsquery`). Cursor pagination guarantees no skipped or duplicated rows under concurrent writes.