Scraper-Key HTTP Header
To authenticate your API requests, include your unique Scraper-Key in the HTTP header.
This key is assigned to you and can be found in the Personal Dashboard section of your account on the platform.
The Scraper-Key ensures secure and authorized access to the API.
Scraper-Key AuthenticationScraper-Key.Scraper-Key as a header with the format:
Scraper-Key: your-key-here
Here is an example of making a request to the API hosted at api.scraper.tech using the Scraper-Key:
curl -X GET "https://api.scraper.tech/some-endpoint" \
-H "Scraper-Key: YOUR_UNIQUE_KEY" \
-H "Content-Type: application/json"
-X GET: Specifies the HTTP method (e.g., GET, POST, PUT)."https://api.scraper.tech/some-endpoint": The endpoint you want to access.-H "Scraper-Key: YOUR_UNIQUE_KEY": Adds your authentication key to the request header.-H "Content-Type: application/json": Specifies the format of the request body (if required).
Replace YOUR_UNIQUE_KEY with the actual Scraper-Key found in your dashboard.