List your agents
List every agent on your account withGET /agents.
Inspect one agent
Inspect one agent by ID withGET /agents/{agentId}.
Rename an agent
Rename an agent, change its description, or adjust its limits, withPATCH /agents/{agentId}.
Revoke an agent
Revoke an agent withDELETE /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 withGET /agent-keys, optionally filtered by agent.
Rotate a key
Rotate withPOST /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 withDELETE /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.