Create an API key
In the dashboard, open Roles & Access → API Keys, click Create API key, and copy the key — it’s shown only once. See Authentication for the details.
Paginate through a list
List endpoints return up topage_size items (default 50, max 200). When meta.pagination.has_more is true, pass the next_cursor back as the cursor query parameter to fetch the next page:
next_cursor until has_more is false.
Explore the endpoints
The full, always-current API reference — every endpoint with its parameters, request and response schemas, and a built-in request console — lives under Endpoints in the sidebar. A few common starting points:| Resource | Endpoint |
|---|---|
| List your agents | GET /public-api/agents |
| Inspect one agent | GET /public-api/agents/{agent_id} |
| Run an agent now | POST /public-api/agents/{agent_id}/run-now |
| List executions | GET /public-api/executions |
| Read credit usage | GET /public-api/billing/usage |
What’s next
Authentication
Key creation, rotation, revocation, and best practices.
Errors
The error envelope and what each status means.
Rate limits
How much you can call, and the headers that tell you.
Neo API agent tool
Let an agent call this same API from inside a workflow.
