The API endpoints require that you authenticate using an API token.

Generate a token

The token can be generated from Olostep dashboard. Please sign in here.

For now, you’ll also need an invite code. Please either send us a message in the Slack community or schedule a 10-minute chat to get your invite.

Use your token

You can authenticate by adding an Authorization header to all your HTTP calls. The Authorization header is formatted as such: Authorization: Bearer <API-TOKEN> (replace <API-TOKEN> with your token. If you don’t have a token, you can generate one for free from the Olostep dashboard.

Example:

curl -L -X GET 'https://api.olostep.com/v1/scrapes/scrape_id' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <API-TOKEN>'