---
title: "API Endpoints"
description: "The dashboard exposes JSON API endpoints for programmatic access. Endpoint Description GET /api/agents List all agents GET /api/supervisors List all supervisors GET /api/cost Cost summary GET /api/audit Audit log entries"
resource: https://www.aiagents.nexus/docs/manual/dashboard/api-endpoints
generated: { by: "process:nexus-agent-assets", at: 2026-09-07T09:13:03Z }
status: stable
---

# Dashboard API Endpoints

The dashboard exposes JSON API endpoints for programmatic access.

## Available Endpoints

| Endpoint | Description |
|----------|-------------|
| `GET /api/agents` | List all agents |
| `GET /api/supervisors` | List all supervisors |
| `GET /api/cost` | Cost summary |
| `GET /api/audit` | Audit log entries |
| `GET /api/trust` | AXIS trust scores |
| `GET /api/broker` | Broker routing stats |
| `GET /api/edge` | Edge deployments |

## Example

```bash
curl http://127.0.0.1:4200/api/agents | jq

# [
#   {
#     "name": "researcher",
#     "status": "running",
#     "id": "a1b2c3d4e5f6"
#   }
# ]
```
