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
| Parameter | Description |
|---|---|
expand | Comma-separated fields to expand (e.g. relationships,edited_by) |
List Entities
GET /entities?collection_id=01JCOLLECTION...
Authorization: Bearer <token>Query Parameters
| Parameter | Description |
|---|---|
collection_id | Filter by collection |
type | Filter by entity type |
limit | Maximum results (default 50) |
cursor | Pagination 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.