GraphQL API Reference
Complete reference documentation for the VolatiCloud GraphQL API, auto-generated from our schema.
Endpoint
https://api.volaticloud.com/gateway/v1/query
Authentication
All API requests (except authenticateAPIClient) require a Bearer token in the Authorization header:
Authorization: Bearer <access_token>
You can obtain an access token by:
- Creating an API client in the VolatiCloud dashboard under Organization Settings > API Clients
- Authenticating using the
authenticateAPIClientmutation with yourclient_idandclient_secret
mutation {
authenticateAPIClient(
clientId: "your-client-id"
clientSecret: "your-client-secret"
) {
accessToken
tokenType
expiresIn
}
}
Explore the Schema
Browse the full schema documentation using the sidebar navigation.