Ping

Returns the status of the server

GraphQL Query

query Ping {
    ping {
        status
    }
}

Variables

{}

Response

{
    "status": Boolean, // True when server is working as expected
}

Example

POST https://dashboard.withblaze.app/api/graphql-api

Headers

NameTypeDescription

x-api-key*

API-KEY

Your Blaze API Key

{
  "data": {
    "ping": {
      "status": true
    }
  }
}

Last updated