https://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-product-research/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-product-research/run |
| Auth | Bearer API key |
| Content-Type | application/json |
Request body
| Name | Type | Required | Description |
|---|---|---|---|
goal | string | optional | Optional filter: all, search, detail, reviews, image-search, opportunity, keyword, price-history, or sales-estimates. Example: all |
Request example
{
"goal": "all"
}Response body
Returns a complete directory of concrete Amazon research APIs. This endpoint does not execute a research query itself.
| Name | Type | Required | Description |
|---|---|---|---|
directoryType | string | required | Identifies this response as an API directory, not a research result. Example: amazon-product-research-directory |
goal | string | required | Applied directory filter. Example: all |
count | integer | required | Number of concrete API entries returned. Example: 33 |
recommendedApis | array | required | Concrete APIs that execute the selected research operation. Example: [] |
recommendedApis[].operation | string | required | Original API operation name. Example: amazon_search |
recommendedApis[].slug | string | required | Concrete API API slug to invoke. Example: amazon-search |
recommendedApis[].endpoint | string | required | Concrete API API run endpoint. Example: /api/skill-api/v1/skills/amazon-search/run |
recommendedApis[].reason | string | required | What the concrete API executes. Example: Search Amazon storefront results by keyword. |
recommendedApis[].typicalFields | array | required | Typical inputs for navigation; the linked API schema is authoritative. Example: [
"keyword",
"marketplace"
] |
recommendedApis[].requestExample | object | required | Example request for the concrete API. Example: {
"marketplace": "US",
"keyword": "wireless speaker"
} |
usage | string | required | Next step for callers. Example: Invoke one recommended API directly for the actual research result. |
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. |
type | string | optional | Provider-specific render or payload type. |
title | string | optional | Provider-specific response title. |
sourceType | string | optional | Provider-specific source platform type. |
sourceTool | string | optional | Provider-specific source tool name. |
costToken | integer | optional | Token cost reported by the upstream provider. |
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.
{
"directoryType": "amazon-product-research-directory",
"goal": "all",
"count": 33,
"recommendedApis": [
{
"reason": "Search Amazon storefront results by keyword.",
"endpoint": "/api/skill-api/v1/skills/amazon-search/run",
"slug": "amazon-search",
"operation": "amazon_search",
"typicalFields": [
"keyword",
"marketplace"
],
"requestExample": {
"marketplace": "US",
"keyword": "wireless speaker"
}
},
{
"reason": "Search Amazon Alexa ranking and product results.",
"endpoint": "/api/skill-api/v1/skills/amazon-alexa-search/run",
"slug": "amazon-alexa-search",
"operation": "amazon_alexa_search",
"typicalFields": [
"keyword",
"marketplace"
],
"requestExample": {
"marketplace": "US",
"keyword": "wireless speaker"
}
}
],
"usage": "Invoke one recommended API directly for the actual research result."
}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.