List Registry

GET/registry

List all resources in the registry with optional filtering.

Authorization

HTTPBearer
AuthorizationBearer <token>

In: header

Query Parameters

resource_type?|

Filter by resource type

name?|

Filter by name (partial match)

page?Page

Page number

Range1 <= value
Default1
limit?Limit

Items per page

Range1 <= value <= 100
Default20

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl --request GET 'https://example.com/registry'
{  "data": [    {      "name": "string",      "type": "tool",      "id": "string",      "description": "string",      "metadata": {}    }  ],  "meta": {    "page": 0,    "limit": 20,    "total_pages": 0,    "total_count": 0,    "search_time_ms": 0  }}