GET API Information

Important information about using GET requests with our GraphQL API

GET Method Information

Please Use POST for GraphQL Operations

You're seeing this page because you made a GET request to our API endpoint. GraphQL operations require POST requests.

While GET requests can technically include GraphQL queries as URL parameters, our API only processes GraphQL operations through POST requests for security and data handling reasons.

GET

Not Supported for Operations

  • Returns this information page
  • Cannot process GraphQL queries or mutations
  • Doesn't support the GraphQL operation model
  • Limited by URL length constraints
POST

Required for Operations

  • Processes all GraphQL operations
  • Accepts queries and mutations in the request body
  • Properly handles variables and complex queries
  • Returns structured JSON responses

Correct POST Request Example

POST /api Copied!
// Headers
Content-Type: application/json
client_id: YOUR_CLIENT_ID

// Body
{
  "query": "query { verifyToken(token: \"your-jwt-token\") { id email } }"
}