v1

latestOpenAPI 3.1.02026-07-22128346287.7 KB
Objects

Objs Query

post/objs/query

Request body

project_idstring required

The ID of the project to query

limitinteger nullable

Maximum number of results to return

offsetinteger nullable

Number of results to skip before returning

metadata_onlyboolean nullable

If true, the val column is not read from the database and is empty.All other fields are returned.

include_storage_sizeboolean nullable

If true, the size_bytes column is returned.

include_tags_and_aliasesboolean nullable

If true, tags and aliases are fetched and included in the response.

Example request

{
  "project_id": "user/project",
  "filter": {
    "base_object_classes": [
      "Model"
    ],
    "exclude_base_object_classes": [
      "Model"
    ],
    "leaf_object_classes": [
      "Model"
    ],
    "is_op": true,
    "latest_only": true
  },
  "limit": 100,
  "sort_by": [
    {
      "direction": "desc",
      "field": "created_at"
    }
  ]
}

Response

Successful Response