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

# Authenticated Requests

> How to use the Treet API Key to make authenticated requests

## Include as headers

<ParamField header="X-Treet-Client-Id" type="string" required>
  Client Id
</ParamField>

<ParamField header="X-Treet-Authentication-Key" type="string" required>
  Treet API Key
</ParamField>

## Example cURL Request

```
curl --request GET 'https://api.treet.co/test-endpoint' \
  -H 'X-Treet-Client-Id: {your client id}' \
  -H 'X-Treet-Authentication-Key: {your API key}' \
```
