https://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-search/runRun this API
Send a JSON request to execute this API and receive the direct response payload.
Endpoint
| Method | POST |
| Path | https://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-search/run |
| Auth | Bearer API key |
| Content-Type | application/json |
Request body
| Name | Type | Required | Description |
|---|---|---|---|
keyword | string | optional | Keyword; please translate to the language of the target country whenever possible, e.g., use English keywords for the US, German keywords for Germany, etc. (max length 1024) Example: phone case |
amazonDomain | string | optional | Amazon country site, default amazon.com |
node | string | optional | Amazon category node (max length 1000) |
language | string | optional | Language/region code, e.g., en_US, de_DE, ja_JP, fr_FR (max length 1000) |
sort | string | optional | Sort order: relevanceblender (Featured, default), price-asc-rank (Price low to high), price-desc-rank (Price high to low), review-rank (Avg. customer review), date-desc-rank (Newest arrivals), exact-aware-popularity-rank (Best sellers) |
page | integer | optional | Page number (starting from 1, ~20 items per page), default 1 Example: 1 |
deliveryZip | string | optional | Delivery zip code, used to simulate Amazon frontend address. It is recommended to use commonly used zip codes for major cities in the target country, e.g., New York zip code 10001 for the US site (max length 1000) |
device | string | optional | Device type: desktop, mobile, tablet, default desktop (max length 1000) |
Request example
{
"keyword": "phone case",
"page": 1
}Response body
Returns the documented upstream API response directly without an additional wrapper.
| Name | Type | Required | Description |
|---|---|---|---|
total | integer | optional | Total rows Example: 1 |
keyword | string | optional | Search keyword Example: phone case |
type | string | optional | Render style |
columns | array | optional | Rendered column definitions Example: [] |
costToken | integer | optional | Token consumption Example: 1 |
products | array | optional | Search result list (see below) Example: [] |
products[].asin | string | optional | ASIN Example: B072MQ5BRX |
products[].title | string | optional | Title |
products[].brand | string | optional | Brand |
products[].price | number | optional | Price Example: 1 |
products[].extractedPrice | number | optional | Parsed price Example: 1 |
products[].oldPrice | number | optional | Strikethrough price Example: 1 |
products[].extractedOldPrice | number | optional | Parsed strikethrough price Example: 1 |
products[].currency | string | optional | Currency |
products[].priceUnit | string | optional | Price unit |
products[].extractedPriceUnit | number | optional | Parsed price unit Example: 1 |
products[].rating | number | optional | Rating Example: 1 |
products[].ratings | integer | optional | Number of ratings Example: 1 |
products[].position | integer | optional | Position Example: 1 |
products[].sponsored | boolean | optional | Whether sponsored Example: false |
products[].imageUrl | string | optional | Thumbnail Example: https://example.com/image.jpg |
products[].asinUrl | string | optional | Link Example: B072MQ5BRX |
products[].delivery | string | optional | Delivery information |
products[].fulfillment | string | optional | Fulfillment information (e.g., FBA) |
products[].availableDate | string | optional | Listing time Example: 2026-01-01 |
products[].monthlySalesUnits | integer | optional | Monthly sales units Example: 1 |
products[].monthlySalesRevenue | string | optional | Monthly sales revenue |
products[].sellerNation | string | optional | Seller nationality |
products[].dimension | string | optional | Dimensions |
products[].weight | string | optional | Weight |
products[].options | string | optional | Options |
products[].offers | string | optional | Offer information |
products[].badges | string | optional | Amazon frontend search badges |
products[].tags | string | optional | Tags |
products[].snapEbtEligible | boolean | optional | SNAP/EBT eligibility Example: false |
products[].sourceType | string | optional | Source type: amazon |
products[].sourceTool | string | optional | Source tool |
products[].keyword | string | optional | Keyword Example: phone case |
errcode | integer | optional | Upstream status code returned by the provider. |
errmsg | string | optional | Upstream status message returned by the provider. |
code | string | optional | Provider-specific status code. |
msg | string | optional | Provider-specific status message. |
message | string | optional | Provider-specific message. |
title | string | optional | Provider-specific response title. |
sourceType | string | optional | Provider-specific source platform type. |
sourceTool | string | optional | Provider-specific source tool name. |
costTime | integer | optional | Execution time reported by the upstream provider. |
page | integer | optional | Current page returned by the upstream provider. |
pageSize | integer | optional | Page size returned by the upstream provider. |
pageItemCount | integer | optional | Item count on the current page returned by the upstream provider. |
totalPage | integer | optional | Total page count returned by the upstream provider. |
dataSnapshotMonth | string | optional | Data snapshot month returned by the upstream provider. |
Response example
Direct response payload. No extra wrapper is added.
{
"total": 1,
"keyword": "phone case",
"columns": [],
"costToken": 1,
"products": [
{
"asin": "B072MQ5BRX",
"price": 1,
"extractedPrice": 1,
"oldPrice": 1,
"extractedOldPrice": 1,
"extractedPriceUnit": 1,
"rating": 1,
"ratings": 1,
"position": 1,
"sponsored": false,
"imageUrl": "https://example.com/image.jpg",
"asinUrl": "B072MQ5BRX",
"availableDate": "2026-01-01",
"monthlySalesUnits": 1,
"snapEbtEligible": false,
"keyword": "phone case"
}
]
}Responses
| Code | Description |
|---|---|
| 200 | API executed successfully. Body is the direct response payload. |
| 400 | Request JSON or required API parameters are invalid. |
| 401 | API key is missing, invalid, or cannot be matched to a user. |
| 5xx | API execution or upstream service failed. |
Data source, freshness, and limitations
Source, freshness, coverage, rate limits, and estimation notes are not specified in this API definition unless they appear in the request or response field documentation above. Do not assume official marketplace data or real-time freshness when it is not explicitly documented.