Authentication

You'll need to authenticate your requests to access any Browserhub API endpoints. In this guide, we'll look at how authentication works. Browserhub offers one way to authenticate your API requests: API key.

API key

When authenticating with API key, you will need to get your API key from the integrations page. Here's how to add the API key to the request header using cURL:

Example request with API key

GET
/v1/scrapers
curl https://api.browserhub.io/v1/scrapers \
  -H "Authorization: Bearer {API key}"