POST
/
scrape
curl --request POST \
  --url https://scrapeapi.pangolinfo.com/api/v1/scrape \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "url": "<string>",
  "formats": [
    "json"
  ],
  "parserName": "amzProductDetail",
  "bizContext": {
    "zipcode": "10041"
  },
  "timeout": 30000
}'

Authorizations

Authorization
string
header
required

Bearer token authentication

Body

application/json

This endpoint allows you to submit a scraping task for a target webpage. You can specify the desired return format(s), and optionally provide a parser name for structured extraction.

The body is of type object.