Endpoints Overview
Common Patterns
Pagination
List endpoints return paginated results. Use thelimit and next parameters:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
This section provides detailed documentation for all Network Simulation API endpoints.
| Tag | Description | Endpoints |
|---|---|---|
| Billing | Billing balance, costs, items, events, and rates (feature-gated: enable_billing_endpoints) | 7 |
| Charts | Chart definitions served to the simulation UI | 1 |
| Components | Component schema discovery | 2 |
| Configurations | Workload configuration management | 34 |
| Health | Health and monitoring endpoints | 2 |
| Libraries | Content-addressed trace libraries (feature-gated: enable_trace_routes) | 2 |
| Models | Model catalog and discovery | 3 |
| Simple | Simple collective-operation simulation | 3 |
| Simulations | Simulation execution and results | 9 |
| Templates | Curated example configurations | 4 |
| Topology | Real-time topology validation | 1 |
| Tracesets | Trace file management (feature-gated: enable_trace_routes) | 9 |
| Workspaces | Workspace management | 6 |
limit and next parameters:
# First page
GET /api/v1/workspaces?limit=50
# Next page
GET /api/v1/workspaces?limit=50&next=<cursor>
{
"error": {
"code": "ERROR_CODE",
"message": "Human-readable error message"
}
}
curl -H "Authorization: Bearer YOUR_TOKEN" ...