List Subgraphs
/v1/graphs/{graph_id}/subgraphsPart of Subgraphs.
Authentication
Authenticate in any one of these ways — not all of them:
- API key in the
X-API-Keyheader. - Bearer token in the
Authorizationheader.
Path parameters
| Name | Type | Description |
|---|---|---|
graph_idrequired | string | Graph Id |
Example request
curl -X GET "https://api.robosystems.ai/v1/graphs/{graph_id}/subgraphs" \
-H "X-API-Key: $ROBOSYSTEMS_API_KEY"Responses
200 Successful Response
| Field | Type | Description | ||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
parent_graph_idrequired | string | Parent graph identifier | ||||||||||||||||||||||||||||||
parent_graph_namerequired | string | Parent graph name | ||||||||||||||||||||||||||||||
parent_graph_tierrequired | string | Parent graph tier | ||||||||||||||||||||||||||||||
subgraphs_enabledrequired | boolean | Whether subgraphs are enabled for this tier | ||||||||||||||||||||||||||||||
subgraph_countrequired | integer | Total number of subgraphs | ||||||||||||||||||||||||||||||
max_subgraphsoptional | integer | Maximum allowed subgraphs for this tier (None = unlimited) | ||||||||||||||||||||||||||||||
total_size_bytesoptional | integer | Combined on-disk footprint of all subgraphs in bytes | ||||||||||||||||||||||||||||||
total_size_mboptional | number | Combined size of all subgraphs in megabytes | ||||||||||||||||||||||||||||||
subgraphsrequired | SubgraphSummary[] | List of subgraphs SubgraphSummary fields
|
| Status | Meaning |
|---|---|
| 400 | Invalid request |
| 401 | Authentication required |
| 403 | Access denied |
| 404 | Resource not found |
| 422 | Validation Error |
| 429 | Rate limit exceeded |
| 500 | Internal server error |