Agents

List an agent's skills

Required API-key scope: agents:read.

get /agents/{agent_object_id}/skills

Authorizations

x-api-key string header required

Talus API Key in the form key_id.secret. The API also accepts Authorization: ApiKey <key_id.secret>, but the docs UI is configured to send x-api-key.

Path Parameters

agent_object_id string required

Agent object id

Query Parameters

page_token integer | null

Opaque token representing the page offset. Omit for the first page.

page_size integer | null

Maximum number of items to return. Defaults to 20.

200application/json

Paginated list of skills

items object[] required
active boolean | null

On-chain SkillRecord.active snapshot.

agent_object_id string required
created_at string required
current_interface_revision integer<int64> required
dag_binding object required
dag_object_id string | null
description string | null

On-chain SkillRecord.description snapshot; null when the record has not been fetched yet.

onchain_created_at string | null

Checkpoint timestamp of the on-chain creation event; null for rows projected before on-chain timestamps were indexed (until a backfill + replay fills them).

record_refreshed_at string | null

When the record snapshot was last applied.

requirements object | null required
skill_id integer<int64> required
updated_at string required
metadata object required

Pagination metadata included in every listing response.

next_token integer | null

Token to pass as page_token to retrieve the next page. null means there are no more pages.

total_items integer<int64> required

Total number of items across all pages.

404

Agent was not found

500

Internal server error