POST
/
scrape
curl --request POST \
  --url https://scrapeapi.pangolinfo.com/api/v1/scrape \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "url": "https://www.amazon.com/dp/B0B4NLGCH5",
  "parserName": "amzDeliveryTime",
  "format": "json",
  "bizContext": {
    "zipcode": "10041"
  },
  "timeout": 60000
}'
{
  "code": 0,
  "message": "ok",
  "pointCost": 2,
  "data": {}
}

积点消耗说明

2个/次

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

调用现有 Scrape API,并固定使用 amzDeliveryTime 解析器。成功调用扣除 2 个积点。

The body is of type object.

Response

200 - application/json

成功返回完整商品详情和配送时效

The response is of type object.