Beeye GraphQL API Server

GraphQL endpoint: /graphql. Use a tool like Insomnia to send requests.

Authentication: send the Authorization header with basic scheme and your API key, e.g. Authorization: basic YourApiKey. You can get your API key in Beeye from your profile page.

Learn more about GraphQL

Check if you're connected

  1. Send a POST request to /graphql.
  2. Set header Authorization: basic YourApiKey and Content-Type: application/json.
  3. Use the request body below (GraphQL query in a query field).

GraphQL query

query {
  company {
    id
    name
  }
}

Request body (ready to POST)

{
  "query": "query { company { id name } }"
}

If you get back your company id and name, you're connected. For more queries and examples, see the Documentation.