> For the complete documentation index, see [llms.txt](https://docs.clearfeed.ai/api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.clearfeed.ai/api/quick-start.md).

# Quick Start

## Get your API token

All API requests in ClearFeed are authenticated using an API token. Any request that doesn't include an API token will return Forbidden exception. You can generate an API token from the [Developer Settings](https://web.clearfeed.app/settings/developer-settings) section in the WebApp whenever needed. For additional details, please refer the following section.

{% content-ref url="/pages/UEqFn5bGL2oGo7vYrbGe" %}
[Authentication Guide](/api/quick-start/authentication-guide.md)
{% endcontent-ref %}

## Make your first request

Ready to get started? All you need to do is make an authenticated call to the requests endpoint for your first request. This nifty action fetches your account's requests and neatly presents them to you. Check out how it's done using the curl example below:

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

```bash
curl --request GET \
  --url 'https://api.clearfeed.app/v1/rest/requests' \
  --header 'Authorization: Bearer {{api_token}}'

```

{% endtab %}
{% endtabs %}

Kudos on your first API call! Dive into the detailed API reference for more.

{% content-ref url="/pages/Z01n2VaKf6s09nQW7zWX" %}
[API Reference](/api/reference/api-reference.md)
{% endcontent-ref %}
