Authentication

  1. Overview
  2. API
  3. Authentication

To connect to our API, you must use the Authorization header and use a valid access token. You can generate access tokens in your workspace settings.

Usage of access tokens

To be able to access any of the available endpoints, you must authenticate with a valid access token.

$access_token = '8ERqhoTUnG3uBdgwvtf1GAeRb10RygKvOWJX2R4U';

curl https://releasesapp.com/api/{endpoint} \
    -H "Authorization: Bearer $access_token" \
    -H 'Accept: application/json' \
    -H 'Content-Type: application/json'

If you run into errors, see the Introduction for more information or get in touch with us.


Was this article helpful?