> ## Documentation Index
> Fetch the complete documentation index at: https://docs.helicone.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Getting Started

## Setting Up Your API Key

First, grab your Helicone-API-key or head to our portal at [https://www.helicone.ai/keys](https://www.helicone.ai/keys) and generate a new key.

### Interactive Playground: Experiment with Queries

[https://www.helicone.ai/api/graphql](https://www.helicone.ai/api/graphql)

In the HTTP Headers section, insert the following block, replacing `HELICONE_API_KEY` with your own:

```json theme={null}
{
  "authorization": "Bearer HELICONE_API_KEY"
}
```

After you've added your key, here's a sample request to get you started:

```graphql theme={null}
{
  heliconeRequest(limit: 1, offset: 0) {
    prompt
    properties {
      name
    }
    responseBody
    response
  }
}
```

Our playground is equipped with IntelliSense, a handy tool that makes it easier to understand what types of fields you can query. Just press (ctrl + space)!

### Accessing the Schema Documentation

You can find the Schema Documentation on the right side of the playground interface. This is your go-to resource for understanding the structure of the data you can query. Visit our playground at [https://www.helicone.ai/api/graphql](https://www.helicone.ai/api/graphql) to explore more!
