# Quick Start

{% hint style="info" %}
**Good to know:** A quick start guide can be good to help folks get up and running with your API in a few steps. Some people prefer diving in with the basics rather than meticulously reading every page of documentation!
{% endhint %}

## Get your API keys

Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.

For more information about an API key, please send email to <business@ave.ai>

## Make your first request

To make your first request, send an authenticated request to the token endpoint. This will query a token, which is nice.

{% content-ref url="/pages/5J5ixYEvZl7jbNjVmInL" %}
[v1](/reference/api-reference/v1.md)
{% endcontent-ref %}

Take a look at how you might call this method via `curl`:

{% tabs %}
{% tab title="curl" %}

```
curl -H "Ave-Auth: my API key" https://openapi.avedata.org/api/v1/tokens/0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c-bsc
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.ave.ai/quick-start.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
