Nexscope logo

Amazon Policy Feed API

REST API and MCP service documentation generated from server-side API definitions. Responses shown here are the direct payload returned by each API execution.

API selector
Amazon Marketplace Intelligence

API overview

Query Amazon is latest policy, regulation, and compliance feed. Supports paginated browsing by marketplace and time range (with AI-generated Chinese summaries), and fetching full article body by record ID.

Try this API
Endpoint
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-policy-feed/run
MCP method
nexscope_amazon_policy_feed

Authentication

All run endpoints require a user API key. Send it as a bearer token in the Authorization header.

Authorization: Bearer nk_xxxxxxxxxxxxxxxxx
Missing or invalid API keys return an authentication error. Manage keys from .
POSThttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-policy-feed/run

Run an API

Request parameters documented by ecommerce.amazon-policy-feed.

Slugamazon-policy-feed
HeadersAuthorization: Bearer nk_...
Content-Type: application/json
Request bodyAPI-specific JSON object.
Response bodyDirect API response payload. No data/result wrapper is added.

Status codes

CodeDescription
200API executed successfully. Body is the direct response payload.
400Request JSON or required API parameters are invalid.
401API key is missing, invalid, or cannot be matched to a user.
5xxAPI execution or upstream service failed.

Example request

curl -X POST https://api.nexscope.ai/api/skill-api/v1/skills/amazon-policy-feed/run \
  -H "Authorization: Bearer nk_xxxxxxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{   "pageSize": 20,   "page": 1,   "site": "US" }'
All categories/ Amazon Marketplace Intelligence
POSThttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-policy-feed/run

Run this API

Send a JSON request to execute this API and receive the direct response payload.

Open tester

Endpoint

MethodPOST
Pathhttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-policy-feed/run
AuthBearer API key
Content-Typeapplication/json

Request body

NameTypeRequiredDescription
sitestringoptional
Amazon site code, uppercase. Defaults to US.
Example: US
publishedAtGtestringoptional
Publication or change time lower bound, inclusive, format yyyy-MM-dd HH:mm:ss.
Example: 2026-01-01 00:00:00
publishedAtLtestringoptional
Publication or change time upper bound, inclusive, format yyyy-MM-dd HH:mm:ss.
Example: 2026-01-07 23:59:59
pageintegeroptional
Page number, starting from 1.
Example: 1
pageSizeintegeroptional
Items per page, range 1-100.
Example: 20
idstringoptional
News record ID from data[].id. Required when calling the policy detail endpoint.
Example: a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4

Request example

{
  "pageSize": 20,
  "page": 1,
  "site": "US"
}

Response body

Returns the documented upstream API response directly without an additional wrapper.

NameTypeRequiredDescription
errcodeintegeroptional
Gateway response code, 200 indicates success.
Example: 200
errmsgstringoptional
Gateway status or error message.
Example: ok
codestringoptional
Business response code for the list endpoint.
Example: 200
msgstringoptional
Business message for the list endpoint.
Example: ok
totalintegeroptional
Number of news items returned by the list endpoint.
Example: 1
typestringoptional
Render style returned by the upstream endpoint.
Example: tableListWorkbenches
dataarrayoptional
News list returned by the policy feed endpoint.
Example: []
data[].idstringoptional
News record ID used to fetch the full body.
Example: a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4
data[].titlestringoptional
News title in the list response.
Example: Amazon policy update
data[].summaryZhstringoptional
AI-generated Chinese summary for the news item.
Example: 政策摘要
data[].originalUrlstringoptional
Original article URL.
Example: https://example.com/news
data[].publishedAtstringoptional
Publication or change time, format yyyy-MM-dd HH:mm:ss.
Example: 2026-01-01 00:00:00
stdoutstringoptional
Full news body in Markdown format returned by the detail endpoint.
Example: # Amazon policy update
titlestringoptional
News title returned by the detail endpoint.
Example: Amazon policy update
summaryZhstringoptional
AI-generated Chinese summary returned by the detail endpoint.
Example: 政策摘要
costTimeintegeroptional
Total processing time in milliseconds.
Example: 1
costTokenintegeroptional
Token consumption.
Example: 1
columnsarrayoptional
Frontend column definitions returned by the list endpoint.
Example: []
messagestringoptional
Provider-specific message.
sourceTypestringoptional
Provider-specific source platform type.
sourceToolstringoptional
Provider-specific source tool name.
pageintegeroptional
Current page returned by the upstream provider.
pageSizeintegeroptional
Page size returned by the upstream provider.
pageItemCountintegeroptional
Item count on the current page returned by the upstream provider.
totalPageintegeroptional
Total page count returned by the upstream provider.
dataSnapshotMonthstringoptional
Data snapshot month returned by the upstream provider.

Response example

Direct response payload. No extra wrapper is added.

{
  "errcode": 200,
  "errmsg": "ok",
  "code": "200",
  "msg": "ok",
  "total": 1,
  "type": "tableListWorkbenches",
  "data": [
    {
      "id": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
      "title": "Amazon policy update",
      "summaryZh": "政策摘要",
      "originalUrl": "https://example.com/news",
      "publishedAt": "2026-01-01 00:00:00"
    }
  ],
  "stdout": "# Amazon policy update",
  "title": "Amazon policy update",
  "summaryZh": "政策摘要",
  "costTime": 1,
  "costToken": 1,
  "columns": []
}

Responses

CodeDescription
200API executed successfully. Body is the direct response payload.
400Request JSON or required API parameters are invalid.
401API key is missing, invalid, or cannot be matched to a user.
5xxAPI 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.

Related APIs

MCP

Use the MCP endpoint when an agent needs to discover and call API tools with JSON-RPC.

GET /api/skill-api/v1/mcp
POST /api/skill-api/v1/mcp
Authorization: Bearer nk_xxxxxxxxxxxxxxxxx
Content-Type: application/json

Call a tool

{
  "jsonrpc": "2.0",
  "id": "tool-call-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_amazon_policy_feed",
    "arguments": {
      "pageSize": 20,
      "page": 1,
      "site": "US"
    }
  }
}

Online test

Execute the current API with your API key and JSON payload.

Try it

Send a real request with the same contract shown in the reference.

Endpoint
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-policy-feed/run
MCP method
nexscope_amazon_policy_feed
cURL
curl -X POST \
  https://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-policy-feed/run \
  -H "Authorization: Bearer nk-..." \
  -H "Content-Type: application/json" \
  -d '{ "pageSize": 20, "page": 1, "site": "US" }'
Response
No response yet. Run the request to see the response here.