You need to set your API token as the header value for your requests. First, click the "Edit HTTP Headers" button (shown below).

2040

Then click the "Add Header" button (shown below).

1870

The header name is 'x-api-key' and the header value should be your API key token.

GraphQL Query Example

{
  enrichment(domain: "airbnb.com"){
    domain
    companyId
    companyName
    companyTools {
      count
      pageInfo {
        hasNextPage
        endCursor
      }
      edges {
        node {
          tool{
            id
            name
          }
          sourcesSummary
          sources
        }
      }
    }
  }
}