ts.res.get

Retrieve a resource by ID.

Retrieve a resource by ID.

Requires authentication

Description

Retrieves detailed information about a resource, including its type, capacity, skills, and metadata.

Parameters

NameTypeRequiredDefaultDescription
idstringYesResource ID

Response

Returns the full resource details.

{
  "capacity_model": "always_on",
  "created_at": "2026-02-07T18:00:00Z",
  "id": "res_a1b2c3d4e5f6...",
  "metadata": {
    "model_id": "claude-opus-4-6"
  },
  "name": "Claude",
  "skills": [
    "code_review",
    "testing",
    "documentation"
  ],
  "status": "active",
  "type": "agent",
  "updated_at": "2026-02-07T18:00:00Z"
}

Errors

CodeDescription
not_authenticatedNo active login for this session
not_foundResource with this ID does not exist