Objects
Get an object
Retrieves a specific object by its ID from the specified collection. Returns the object with all its properties.
get/v1/objects/{collection}/{id}
Path parameters
collectionstring required
The collection this object belongs to.
idstring required
Unique identifier for the object.
Response
OK
Example response
{
"__typename": "Object",
"collection": "assets",
"created_at": null,
"id": "specimen_25",
"properties": {
"classification": "Theropod",
"config": {
"biz": "baz",
"foo": "bar"
},
"name": "Velociraptor",
"status": "contained"
},
"updated_at": "2024-05-22T12:00:00Z"
}