For the complete documentation index, see llms.txt. This page is also available as Markdown.

Entity Intelligence

Get Entity Graph

get

Entity relationship graph — one level of edges with neighbor metadata. same_as edges are historical merge edges (written by the pre-SDP resolver; merge detection now lives in the Databricks pipeline — new edges are not produced).

Authorizations
AuthorizationstringRequired

API key issued via POST /v1/{workspace_id}/api-keys. Pass the returned api_key value as a Bearer token.

Path parameters
workspace_idstring · uuidRequired
entity_idstring · uuidRequired
Responses
200

Successful Response

application/json
Other propertiesanyOptional
get/v1/{workspace_id}/world/entities/{entity_id}/graph
GET /v1/{workspace_id}/world/entities/{entity_id}/graph HTTP/1.1
Host: api.platform.amigo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "ANY_ADDITIONAL_PROPERTY": "anything"
}

Get Entity Provenance

get

Data lineage for an entity — sources, confidence history, merge history (historical same_as edges from the pre-SDP resolver — new edges are not produced).

Authorizations
AuthorizationstringRequired

API key issued via POST /v1/{workspace_id}/api-keys. Pass the returned api_key value as a Bearer token.

Path parameters
workspace_idstring · uuidRequired
entity_idstring · uuidRequired
Responses
200

Successful Response

application/json
Other propertiesanyOptional
get/v1/{workspace_id}/world/entities/{entity_id}/provenance
GET /v1/{workspace_id}/world/entities/{entity_id}/provenance HTTP/1.1
Host: api.platform.amigo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "ANY_ADDITIONAL_PROPERTY": "anything"
}

Get Entity Lineage

get

Full data lineage — provenance + outbound sinks + review history.

Authorizations
AuthorizationstringRequired

API key issued via POST /v1/{workspace_id}/api-keys. Pass the returned api_key value as a Bearer token.

Path parameters
workspace_idstring · uuidRequired
entity_idstring · uuidRequired
Responses
200

Successful Response

application/json
Other propertiesanyOptional
get/v1/{workspace_id}/world/entities/{entity_id}/lineage
GET /v1/{workspace_id}/world/entities/{entity_id}/lineage HTTP/1.1
Host: api.platform.amigo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "ANY_ADDITIONAL_PROPERTY": "anything"
}

Get Entity Duplicates

get

Suspected duplicate entities — historical same_as merge edges sorted by confidence (written by the pre-SDP resolver; merge detection now lives in the Databricks pipeline — new edges are not produced).

Authorizations
AuthorizationstringRequired

API key issued via POST /v1/{workspace_id}/api-keys. Pass the returned api_key value as a Bearer token.

Path parameters
workspace_idstring · uuidRequired
Query parameters
entity_typestring · nullableOptional

Filter by entity type

confidence_maxnumber · max: 1Optional

Max confidence threshold

Default: 1
limitinteger · min: 1 · max: 500Optional

Max edges to return

Default: 100
offsetintegerOptional

Page offset

Default: 0
Responses
200

Successful Response

application/json
Other propertiesanyOptional
get/v1/{workspace_id}/world/entities/duplicates
GET /v1/{workspace_id}/world/entities/duplicates HTTP/1.1
Host: api.platform.amigo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
  {
    "ANY_ADDITIONAL_PROPERTY": "anything"
  }
]
get

Enhanced entity search with type, source, and confidence filters.

Authorizations
AuthorizationstringRequired

API key issued via POST /v1/{workspace_id}/api-keys. Pass the returned api_key value as a Bearer token.

Path parameters
workspace_idstring · uuidRequired
Query parameters
qstringRequired

Search text (matched against display_name)

entity_typestring · nullableOptional

Filter by entity type

sourcestring · nullableOptional

Filter by event source

confidence_minnumber · max: 1 · nullableOptional

Min confidence

limitinteger · min: 1 · max: 100OptionalDefault: 20
offsetintegerOptionalDefault: 0
Responses
200

Successful Response

application/json
Other propertiesanyOptional
get/v1/{workspace_id}/world/search
GET /v1/{workspace_id}/world/search?q=text HTTP/1.1
Host: api.platform.amigo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "ANY_ADDITIONAL_PROPERTY": "anything"
}

Last updated

Was this helpful?