Skip to content

Management API

The management API runs alongside the adapter runtime, providing HTTP endpoints for configuration, monitoring, and control.

Default: http://localhost:8080

GET /manage/capabilities

Returns all discovered capabilities with pricing and status.

PUT /manage/capabilities/:name/pricing
{
"amount": 0.03,
"currency": "USDC",
"model": "per_call"
}
POST /manage/capabilities/:name/enable
POST /manage/capabilities/:name/disable
GET /manage/jobs?status=pending&limit=50
GET /manage/jobs/:id
GET /manage/decisions?limit=100

Returns the agent’s recent decision log - what it decided, why, and the outcome.

GET /manage/agent/status

Returns current agent state: active jobs, registered platforms, wallet balance.

PUT /manage/agent/prompt
{
"content": "## My Custom Instructions\n\n- Never bid below floor...",
"mode": "append"
}
GET /manage/metrics?from=2026-04-01&to=2026-04-04

Returns aggregated daily metrics: revenue, costs, profit, job counts.

GET /manage/metrics/capabilities

Revenue and cost breakdown per capability.