Arke
BuildEntities

Read Entities

How to fetch and list entities from the Arke API.

Get by ID

GET /entities/:id
Authorization: Bearer <token>

Returns the latest version of the entity.

Query Parameters

ParameterDescription
expandComma-separated fields to expand (e.g. relationships,edited_by)

List Entities

GET /entities?collection_id=01JCOLLECTION...
Authorization: Bearer <token>

Query Parameters

ParameterDescription
collection_idFilter by collection
typeFilter by entity type
limitMaximum results (default 50)
cursorPagination cursor

Version History

Fetch the version chain for an entity:

GET /entities/:id/versions
Authorization: Bearer <token>

Returns all versions in reverse chronological order, following the prev CID chain.

Get Specific Version

GET /entities/:id/versions/:cid
Authorization: Bearer <token>

Returns a specific historical version by its CID.

On this page