Endpoint
masker_session authentication.
Path parameters
string
required
The agent’s ID in
agt_* ULID format, e.g. agt_01HYZ....Response fields
object
required
Full agent object.
Example
Response
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Fetch the full configuration, active masking policy, proxy URL, and 24-hour and 7-day usage statistics for a single agent by its ULID.
GET /api/v1/agents/{agent_id}
masker_session authentication.
agt_* ULID format, e.g. agt_01HYZ....Hide agent object fields
agt_* ULID format.openai:gpt-4o-mini.vault-deterministic or reversible-aead.Show stats fields
curl -H "Cookie: masker_session=ey..." \
https://masker-voice.fly.dev/api/v1/agents/agt_01HYZ...
{
"agent": {
"id": "agt_01HYZ...",
"name": "appointment-bot-prod",
"upstream": "openai:gpt-4o-mini",
"tokenization": "vault-deterministic",
"policy_name": "healthcare-default",
"policy_version": 1,
"policy_yaml": "name: healthcare-default\nversion: 1\n...",
"proxy_url": "https://masker-voice.fly.dev/proxy/agt_01HYZ.../v1/chat/completions",
"webhook_url": "https://masker-voice.fly.dev/vapi/webhook/agt_01HYZ...",
"created_at": "2026-04-15T10:22:11Z",
"stats": {
"session_count_24h": 247,
"session_count_7d": 1834,
"redaction_count_24h": 1289,
"p50_latency_ms": 412,
"p95_latency_ms": 891
}
}
}
| Status | Code | Meaning |
|---|---|---|
401 | unauthenticated | Missing or invalid masker_session cookie |
404 | agent_not_found | No agent with this ID exists in your account |