v30

latestOpenAPI 3.0.0raw.githubusercontent.com2026-04-22116135580.0 KB
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

__typenamestring required

The typename of the schema.

collectionstring required

The collection this object belongs to.

created_atstring date-time nullable

Timestamp when the resource was created.

idstring required

Unique identifier for the object.

propertiesobject

The custom properties associated with the object.

updated_atstring date-time required

The timestamp when the resource was last updated.

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"
}