Skip to main content

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:

  1. Creating an API client in the VolatiCloud dashboard under Organization Settings > API Clients
  2. Authenticating using the authenticateAPIClient mutation with your client_id and client_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.