Authentication

To query our API you need an API key.

Obtaining an API key

Currently, API keys can only be obtained by asking for one at your direct contact at Recrubo.

Not sure who to contact? Send a message to [email protected]

Authenticating requests

To authenticate requests, you need to include your API key in the Authorization header of your request.

The value of the Authorization header should be:

Bearer <API_KEY>

For example, if your API key is xx-xx-xx-xx-xx.

The Authorization header should be: Bearer xx-xx-xx-xx-xx.

Example

curl -X GET "https://api.recrubo.app/public/v2/flow-runs" \
    -H "Authorization: Bearer xx-xx-xx-xx-xx" \
    -H "Content-Type: application/vnd.api+json"

Last updated