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

Generate a token

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

To get your invite code, please reach out via this form or send a message in the Slack community.

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>'