Skip to main content
See every agent you have created, inspect one, rename it, or revoke it when it is done.

List your agents

List every agent on your account with GET /agents.

Inspect one agent

Inspect one agent by ID with GET /agents/{agentId}.

Rename an agent

Rename an agent, change its description, or adjust its limits, with PATCH /agents/{agentId}.

Revoke an agent

Revoke an agent with DELETE /agents/{agentId}. Its status becomes REVOKED and it stops moving money at once, but the record stays readable so its history survives.

Agent keys

An agent key (ak_ntl_*) is a credential bound to one agent. Your dashboard lists keys on the agent detail page; over the API, use the agent-keys endpoints below. Issue a new key when you create an agent.

List keys

There is no get-by-id endpoint. List keys with GET /agent-keys, optionally filtered by agent.

Rotate a key

Rotate with POST /agent-keys/{keyId}/rotate to mint a fresh secret on the same agent. Set a grace period so running workloads can pick up the new key before the old one stops working. The new secret is again shown once.

Revoke a key

Revoke with DELETE /agent-keys/{keyId} to invalidate a key immediately. This cannot be undone, and other keys on the same agent keep working. Reach for it when a secret leaks or you are retiring one credential without archiving the agent.