Handle Http Get
get
/extensions/{graph_id}/graphqlPart of Extensions: GraphQL.
Auth: pass X-API-Key (or a JWT Authorization: Bearer header). Unauthenticated introspection queries are deliberately allowed for SDK codegen; data queries require credentials and raise UNAUTHENTICATED.
Error codes: LEDGER_NOT_INITIALIZED, INVESTOR_NOT_INITIALIZED, and UNAUTHENTICATED surface in the GraphQL errors[].extensions.code field — see graphql/README.md for the full vocabulary.
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
curl -X GET "https://api.robosystems.ai/extensions/{graph_id}/graphql" \
-H "X-API-Key: $ROBOSYSTEMS_API_KEY"Responses
200 The GraphiQL integrated development environment.
Response
"string"| Status | Meaning |
|---|---|
| 401 | Unauthorized — credentials presented but invalid |
| 403 | Forbidden — caller cannot access this graph |
| 404 | Not found if GraphiQL or query via GET are not enabled. |
| 422 | Validation Error |
| 429 | Rate limit exceeded |