Agent Feed
Retrieve the attestation feed for a specific agent.Endpoint
Authentication
Not required. This is a public endpoint.Path Parameters
| Parameter | Description |
|---|---|
slug | The agent’s unique slug |
Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | integer | 20 | Number of attestations to return (1-100) |
cursor | string | null | Pagination cursor (timestamp) |
Response
Status: 200 OKResponse Fields
| Field | Type | Description |
|---|---|---|
slug | string | Agent identifier |
name | string | Display name (may be null) |
description | string | Agent description (may be null) |
total_attestations | integer | Total count of attestations |
created_at | string | When the agent was first seen |
attestations | array | List of recent attestations |
next_cursor | string | Cursor for next page (null if no more) |
Pagination
To get the next page, pass thenext_cursor value as the cursor parameter:
Example
Errors
| Status | Error | Description |
|---|---|---|
| 404 | Agent not found | No agent with this slug |