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

# Getting Started

## Interactive GraphQL Playground[](#interactive-graphql-playground)

You can use our interactive playground to experiment with queries and see the results. You can find the Interactive Playground [here ](https://api.athina.ai/graphql).

### Authentication[](#authentication)

If you are logged in to the Athina Dashboard ([https://app.athina.ai ](https://app.athina.ai/)), you should automatically be able to access the GraphQL playground.

### Explore the GraphQL Schema[](#explore-the-graphql-schema)

In the left sidebar, click the third icon to open the GraphQL explorer.

This will allow you explore the different queries and fields that you can access.

![](https://mintlify.s3.us-west-1.amazonaws.com/athinaai/images/gql-getting-started.png)

### Sample Request[](#sample-request)

Here’s a [sample request ](https://api.athina.ai/graphql?query=query+MyQuery+%7B%0A++getPromptRunsByFilters+%7B%0A++++user_query%0A++++prompt_response%0A++%7D%0A%7D) to get you started:

```python
query GetMessage {
  getPromptRunsByFilters {
    user_query
    prompt_response
  }
}
```

To help you get started, we've also curated a [documentation page](/api-reference/graphql-api/sample-queries) with some more sample queries.

## IntelliSense and Keyboard Shortcuts[](#intellisense-and-keyboard-shortcuts)

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)!

There are a few more keyboard shortcuts that you can use to make your experience more enjoyable.

* Prettify Query: Shift-Ctrl-P (or press the prettify button)
* Merge Query: Shift-Ctrl-M (or press the merge button)
* Run Query: Ctrl-Enter (or press the play button)
* Auto Complete: Ctrl-Space (or just start typing)

You can find more information about the Interactive Playground [here ](https://github.com/graphql/graphiql)
