Admin Keys
Manage the entire project via the SDK — agents, keys, settings, and usage are all exposed through the Admin API; this console is just an optional UI.
| Name | Token | Created | Last used | Actions |
|---|---|---|---|---|
| CI / 基础设施自动化 | pchy_admin_••••••••7b3d | 2026-06-18 | — |
Demo data — sign in to create real keys.
Example — update an agent's persona config from your backend
The Admin API manages everything this dashboard does, headlessly. The project is implied by the key, so there's no projectId in the path — a key only ever reaches its own project.
Quickstart — list this project's agents
curl https://pouchy.ai/v1/admin/agents \
-H "Authorization: Bearer pchy_admin_…"
Endpoints
# project implied by the key — no projectId in the path
GET|POST /v1/admin/agents
GET|PATCH|DELETE /v1/admin/agents/{agentId}
GET|POST /v1/admin/keys · DELETE /v1/admin/keys/{keyId}
GET /v1/admin/users · PATCH|DELETE /v1/admin/users/{instanceId}
GET|POST /v1/admin/knowledge · DELETE /v1/admin/knowledge/{docId}
GET|POST /v1/admin/skills · PATCH|DELETE /v1/admin/skills/{slug}
GET|POST /v1/admin/credentials· DELETE /v1/admin/credentials/{skill}
GET|POST /v1/admin/webhooks · DELETE /v1/admin/webhooks/{webhookId}
GET /v1/admin/logs?limit=1..200
GET /v1/admin/usage
GET|PATCH /v1/admin/project
GET /v1/admin/billing (read-only)
Demo mode — sign in to see your real keys.