https://api.nexscope.ai/api/skill-api/v1/skills/amazon-policy-feed/runRun this API
Send a JSON request to execute this API and receive the documented response payload.
Endpoint
| Method | POST |
| Path | https://api.nexscope.ai/api/skill-api/v1/skills/amazon-policy-feed/run |
| Auth | Bearer API key |
| Content-Type | application/json |
Request body
| Name | Type | Required | Description |
|---|---|---|---|
site | string | optional | Amazon site code, uppercase. Defaults to US. Example: US |
publishedAtGte | string | optional | Publication or change time lower bound, inclusive, format yyyy-MM-dd HH:mm:ss. Example: 2026-01-01 00:00:00 |
publishedAtLte | string | optional | Publication or change time upper bound, inclusive, format yyyy-MM-dd HH:mm:ss. Example: 2026-01-07 23:59:59 |
page | integer | optional | Page number, starting from 1. Example: 1 |
pageSize | integer | optional | Items per page, range 1-100. Example: 20 |
id | string | optional | News record ID from data[].id. Required when calling the policy detail endpoint. Example: a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4 |
Request example
{
"page": 1,
"pageSize": 20,
"site": "US"
}Response body
| Name | Type | Required | Description |
|---|---|---|---|
data | any | required | Data value used by this API operation. |
code | integer | required | 0 means accepted or successful; nonzero is a platform error. |
msg | string | null | required | Msg value used by this API operation. |
ts | string | required | Epoch milliseconds. |
time | string | required | Server local time: yyyy-MM-dd HH:mm:ss. |
cost | string | required | Elapsed milliseconds, never credits; -1 outside web requests. |
traceId | string | null | required | Trace id value used by this API operation. |
Any of option 1
| Name | Type | Required | Description |
|---|---|---|---|
data | object | required | Data value used by this API operation. |
data.total | integer | optional | Number of news items returned by the list endpoint. Example: 1 |
data.type | string | optional | Render style returned by the upstream endpoint. Example: tableListWorkbenches |
data.data | array | optional | News list returned by the policy feed endpoint. Example: [] |
data.data[].id | string | optional | News record ID used to fetch the full body. Example: a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4 |
data.data[].title | string | optional | News title in the list response. Example: Amazon policy update |
data.data[].summaryZh | string | optional | AI-generated Chinese summary for the news item. Example: Policy summary |
data.data[].originalUrl | string | optional | Original article URL. Example: https://example.com/news |
data.data[].publishedAt | string | optional | Publication or change time, format yyyy-MM-dd HH:mm:ss. Example: 2026-01-01 00:00:00 |
data.stdout | string | optional | Full news body in Markdown format returned by the detail endpoint. Example: # Amazon policy update |
data.title | string | optional | News title returned by the detail endpoint. Example: Amazon policy update |
data.summaryZh | string | optional | AI-generated Chinese summary returned by the detail endpoint. Example: Policy summary |
data.costTime | integer | optional | Total processing time in milliseconds. Example: 1 |
data.costToken | integer | optional | Token consumption. Example: 1 |
data.columns | array | optional | Frontend column definitions returned by the list endpoint. Example: [] |
data.sourceType | string | optional | Provider-specific source platform type. Example: null |
data.sourceTool | string | optional | Provider-specific source tool name. Example: null |
data.page | integer | optional | Current page returned by the upstream provider. Example: null |
data.pageSize | integer | optional | Page size returned by the upstream provider. Example: null |
data.pageItemCount | integer | optional | Item count on the current page returned by the upstream provider. Example: null |
data.totalPage | integer | optional | Total page count returned by the upstream provider. Example: null |
data.dataSnapshotMonth | string | optional | Data snapshot month returned by the upstream provider. Example: null |
Any of option 2
| Name | Type | Required | Description |
|---|---|---|---|
data | null | required | Data value used by this API operation. |
Response example
Platform response envelope. code 0 indicates success or acceptance; data contains the business result.
{
"data": {
"total": 1,
"type": "tableListWorkbenches",
"data": [
{
"id": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
"title": "Amazon policy update",
"summaryZh": "Policy summary",
"originalUrl": "https://example.com/news",
"publishedAt": "2026-01-01 00:00:00"
}
],
"stdout": "# Amazon policy update",
"title": "Amazon policy update",
"summaryZh": "Policy summary",
"costTime": 1,
"costToken": 1,
"columns": []
},
"code": 0,
"msg": "ok",
"ts": "0",
"time": "2026-01-01 00:00:00",
"cost": "-1",
"traceId": null
}Responses
| Code | Description |
|---|---|
| 200 | HTTP request completed. Check JSON code; only 0 indicates business success or acceptance. |
| 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.