Skip to main content
GET
/
v1
/
agents
/
{agent_id}
Get agent profile
curl --request GET \
  --url https://api.usezombie.com/v1/agents/{agent_id} \
  --header 'Authorization: Bearer <token>'
{
  "request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "status": "<string>",
  "workspace_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "trust_level": "<string>",
  "trust_streak_runs": 123,
  "improvement_stalled_warning": true,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Obtain a token via the CLI auth flow (POST /v1/auth/sessions) or GitHub OAuth

Path Parameters

agent_id
string<uuid>
required

Agent identifier

Response

Agent profile

Agent profile including trust and improvement metadata

request_id
string<uuid>
required
agent_id
string<uuid>
name
string

Human-readable agent name

status
string

Agent operational status

workspace_id
string<uuid>
trust_level
string

Current trust level (e.g. low, medium, high)

trust_streak_runs
integer

Number of consecutive successful runs contributing to trust

improvement_stalled_warning
boolean

True if the agent's self-improvement has plateaued

created_at
string<date-time>
updated_at
string<date-time>