Skip to main content
GET
/
registry
List Registry
curl --request GET \
  --url https://api.example.com/registry \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "name": "<string>",
      "type": "tool",
      "description": "<string>",
      "metadata": {}
    }
  ],
  "meta": {
    "page": 0,
    "limit": 20,
    "total_pages": 0,
    "total_count": 0,
    "search_time_ms": 0
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

resource_type
enum<string> | null

Filter by resource type Types of resources that can be stored in a registry.

Available options:
tool,
model,
db,
vector_db,
schema,
function
name
string | null

Filter by name (partial match)

page
integer
default:1

Page number

Required range: x >= 1
limit
integer
default:20

Items per page

Required range: 1 <= x <= 100

Response

Successful Response

data
RegistryContentResponse · object[]
required

List of items for the current page

meta
PaginationInfo · object
required

Pagination metadata