POST
/
v2
/
scrape
curl --request POST \
  --url https://scrapeapi.pangolinfo.com/api/v2/scrape \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "parserName": "amazonAlexa",
  "param": [
    "books"
  ],
  "screenshot": false
}'
{
  "code": 123,
  "message": "<string>",
  "data": {
    "taskId": "<string>",
    "url": "<string>",
    "screenshot": "<string>",
    "json": [
      {
        "prompt": "<string>",
        "content": "<string>",
        "follow_up_questions": [
          "<string>"
        ],
        "screenshot": "<string>",
        "products": [
          {
            "title": "<string>",
            "items": [
              {
                "asin": "<string>",
                "url": "<string>",
                "title": "<string>",
                "cover": "<string>",
                "score": "<string>",
                "ratingsCount": "<string>",
                "price": "<string>",
                "originalPrice": "<string>",
                "describe": "<string>"
              }
            ]
          }
        ]
      }
    ]
  }
}

性能与积点消耗说明

API调用消耗积点数
每轮对话(按 param 数组长度计费)Amazon Alexa6个/次
  • 默认 QPS:3
  • 平均响应时间:30s

Authorizations

Authorization
string
header
required

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

Body

application/json

Amazon Alexa (Rufus) 购物助手对话采集

The body is of type object.

Response

200 - application/json

成功返回示例

The response is of type object.