Skip to main content

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:
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.
For more detailed instructions on obtaining and using tokens with Propaga’s API, refer to the authentication section of the official documentation.