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

# Token & authorization

> How do you auth with our API?

# Using Tokens in API Requests

When making requests to the Propaga API, you'll need to include a token for authentication.
To use a token, include it in the `Authorization` header of your request. Here's an example using cURL:

```bash theme={null}
curl -X GET \
  -H "Authorization: {YOUR_TOKEN}" \
  https://api.propaga.io/v1/...
```

The token don't need to be refresh. You can use it as long as you want.
Propaga share with you a token for testing and production purposes.

Remember to handle your tokens securely and avoid exposing them in public repositories or client-side code.

<Warning>
  For more detailed instructions on obtaining and using tokens with Propaga's API,
  refer to the authentication section of the official documentation.
</Warning>
