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

Data Entities

Get Entity by ID

get

Returns metadata and system info for an entity by its ID

Authorizations
AuthorizationstringRequired

Insert the JWT token here

Path parameters
idstring · uuidRequired

Entity ID

Responses
200

Default Response

application/json
statusintegerRequired

HTTP status code

Example: 200
get
/api/public/v1/entities/{id}

Update Entity Attributes

patch

Update attributes of an entity.

🚨 Note:

  • Array-type fields (e.g. tags) will fully replace existing values if provided.

  • Scalar fields (e.g. sensitivity, description) will overwrite the current value.

  • Object-type fields (e.g. info) will overwrite only the keys provided, keeping other keys unchanged.

Only the specified fields will be affected — other attributes remain untouched.

Authorizations
AuthorizationstringRequired

Insert the JWT token here

Path parameters
idstring · uuidRequired

Entity ID

Body
Responses
200

Default Response

application/json
statusintegerRequiredExample: 200
patch
/api/public/v1/entities/{id}

Get Entities by IDs

post

Returns array of metadata and system info for entities by their IDs

🚨 Note: Results are limited to 10,000 items.

Authorizations
AuthorizationstringRequired

Insert the JWT token here

Body
idsstring · uuid[] · min: 1Required

Array of entity IDs

Responses
200

Default Response

application/json
statusintegerRequired

HTTP status code

Example: 200
post
/api/public/v1/entities/by-ids

Filter Entities

post

Returns array of entities filtered by criteria with pagination support

🚨 Note: Results are limited to 10,000 items.

Authorizations
AuthorizationstringRequired

Insert the JWT token here

Body

At least one filter must be provided

pageinteger · min: 1Optional

Page number for pagination (starts from 1)

Default: 1
perPageinteger · min: 1 · max: 10000Optional

Number of items per page (max 1000)

Default: 100
Responses
200

Default Response

application/json
statusintegerRequired

HTTP status code

Example: 200
post
/api/public/v1/entities/filter

Get Profiling Information by Entity IDs

post

Returns profiling statistics for a list of entities by their IDs, including stats, sampling, pattern analysis, and countDistinct values.

🚨 Note: Results are limited to 10,000 items.

Authorizations
AuthorizationstringRequired

Insert the JWT token here

Body
idsstring · uuid[] · min: 1Required

Array of entity IDs

Responses
200

Default Response

application/json
statusintegerRequired

HTTP status code

Example: 200
post
/api/public/v1/entities/by-ids/profiling-info

Filter Profiling Information

post

Returns profiling statistics for entities filtered by criteria with pagination support, including stats, sampling, pattern analysis, and countDistinct values.

🚨 Note: Results are limited to 10,000 items.

Authorizations
AuthorizationstringRequired

Insert the JWT token here

Body

At least one filter must be provided

pageinteger · min: 1Optional

Page number for pagination (starts from 1)

Default: 1
perPageinteger · min: 1 · max: 10000Optional

Number of items per page (max 1000)

Default: 100
Responses
200

Default Response

application/json
statusintegerRequired

HTTP status code

Example: 200
post
/api/public/v1/entities/filter/profiling-info

Last updated

Was this helpful?