Skip to main content
GET
/
v1
/
agents
/
{id}
curl https://api.saturn-pay.com/v1/agents/agt_abc123 \
  -H "Authorization: Bearer sk_agt_..."
{
  "id": "agt_abc123",
  "name": "research-agent",
  "killed": false,
  "createdAt": "2024-01-15T10:30:00Z",
  "lastActiveAt": "2024-01-20T14:22:00Z"
}
Returns details for a specific agent.

Path Parameters

id
string
required
The agent ID (e.g., agt_abc123)

Response

id
string
Unique agent identifier
name
string
Agent name
killed
boolean
Whether the kill switch is active
createdAt
string
ISO 8601 timestamp
lastActiveAt
string
Last API call timestamp
curl https://api.saturn-pay.com/v1/agents/agt_abc123 \
  -H "Authorization: Bearer sk_agt_..."
{
  "id": "agt_abc123",
  "name": "research-agent",
  "killed": false,
  "createdAt": "2024-01-15T10:30:00Z",
  "lastActiveAt": "2024-01-20T14:22:00Z"
}