ts.res.list

Query resources with filters.

Query resources with filters.

Requires authentication

Description

Lists resources with optional filtering by type, status, organization membership, and text search. Supports pagination.

Parameters

NameTypeRequiredDefaultDescription
typestringFilter by type: human, agent, service, budget
statusstringFilter by status: active, inactive
organization_idstringFilter by organization membership
searchstringSearch by name (partial match)
limitinteger50Maximum number of results to return
offsetinteger0Number of results to skip (for pagination)

Response

Returns a paginated list of resources.

{
  "limit": 50,
  "offset": 0,
  "resources": [
    {
      "created_at": "2026-02-07T18:00:00Z",
      "id": "res_a1b2c3d4e5f6...",
      "name": "Claude",
      "status": "active",
      "type": "agent",
      "updated_at": "2026-02-07T18:00:00Z"
    }
  ],
  "total": 1
}

Errors

CodeDescription
not_authenticatedNo active login for this session