Nexscope logo

Etsy Product Query 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
Etsy Marketplace

API overview

Query Etsy products with multi-dimensional filters (keyword/URL, price, sales, favorites, reviews, listing date, category, handmade/vintage types, Pick/Bestseller/Raving tags).

Try this API
Endpoint
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/etsy-product-query/run
MCP method
nexscope_etsy_product_query

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/etsy-product-query/run

Run an API

Request parameters documented by ecommerce.etsy-product-query.

Slugetsy-product-query
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/etsy-product-query/run \
  -H "Authorization: Bearer nk_xxxxxxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{   "pageSize": 10,   "searchKey": "phone case",   "page": 1 }'
All categories/ Etsy Marketplace
POSThttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/etsy-product-query/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/etsy-product-query/run
AuthBearer API key
Content-Typeapplication/json

Request body

NameTypeRequiredDescription
beginFavoritesintegeroptional
Favorite count (start), combined with end value to form the upstream favorites range
Example: 1
beginFavoritesWeeklyintegeroptional
Weekly new favorites (start), combined with end value to form the upstream favorites_weekly range
Example: 1
beginPricenumberoptional
Price (start), combined with end price to form the upstream price range (e.g., 20~100). When only one side is provided, the upstream returns start~ or ~end
Example: 1
beginReviewsintegeroptional
Review count (start), combined with end value to form the upstream reviews range
Example: 1
beginReviewsWeeklyintegeroptional
Weekly new reviews (start), combined with end value to form the upstream reviews_weekly range
Example: 1
beginSalesintegeroptional
Total sales (start), combined with end value to form the upstream sales range
Example: 1
beginSalesWeeklyintegeroptional
Weekly sales (start), combined with end value to form the upstream sales_weekly range (e.g., 1~100)
Example: 1
categorystringoptional
Product category ID (single category), see the Category Query API
countrystringoptional
Shipping country
currencyCodestringoptional
Currency code
endFavoritesintegeroptional
Favorite count (end)
Example: 1
endFavoritesWeeklyintegeroptional
Weekly new favorites (end)
Example: 1
endPricenumberoptional
Price (end), combined with start price to form the upstream price range
Example: 1
endReviewsintegeroptional
Review count (end)
Example: 1
endReviewsWeeklyintegeroptional
Weekly new reviews (end)
Example: 1
endSalesintegeroptional
Total sales (end)
Example: 1
endSalesWeeklyintegeroptional
Weekly sales (end)
Example: 1
isBestsellintegeroptional
Whether the product is a bestseller
Example: 1
isPickintegeroptional
Whether the product is a Pick item
Example: 1
isRavingintegeroptional
Whether the product is a Raving item
Example: 1
listedTimestringoptional
Listing time no earlier than this date (YYYY-MM-DD)
pageintegeroptional
Page number (starting from 1)
Example: 1
pageSizeintegeroptional
Items per page, max 100, recommended not to exceed 50
Example: 10
productTypestringoptional
Product type, comma-separated for multiple: 1=Handmade 2=Vintage 3=Digital 4=Custom 9=Other
searchKeystringoptional
Search keyword or Etsy product URL
sortByintegeroptional
Sort field (corresponds to upstream sort_by, values 1~6)
Example: 1
sortDescintegeroptional
Sort direction (corresponds to upstream desc). Schema example: descending 1, ascending 2 (encoding differs from store query's sortDesc)
Example: 1
statusintegeroptional
Product status (example: 1=active, 0=inactive)
Example: 1

Request example

{
  "pageSize": 10,
  "searchKey": "phone case",
  "page": 1
}

Response body

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

NameTypeRequiredDescription
totalintegeroptional
Record count (number of records returned on this page, for alignment with list length)
Example: 1
sourceToolstringoptional
Tool type: ehunt
sourceTypestringoptional
Source type: etsy
columnsarrayoptional
Rendered columns
Example: []
costTokenintegeroptional
Token consumption (estimated based on records returned on this page)
Example: 1
productNumintegeroptional
Total number of matching products (upstream product_num)
Example: 1
titlestringoptional
Title
typestringoptional
Render style
productsarrayoptional
Etsy product list
Example: []
products[].categorystringoptional
Category name
products[].favoritesintegeroptional
Favorite count
Example: 1
products[].favoritesWeeklyintegeroptional
Weekly new favorites
Example: 1
products[].imageUrlstringoptional
Main image URL
Example: https://example.com/image.jpg
products[].isBestsellintegeroptional
Whether bestseller: 1=Yes
Example: 1
products[].isPickintegeroptional
Whether Pick: 1=Yes
Example: 1
products[].isRavingintegeroptional
Whether Raving: 1=Yes
Example: 1
products[].pricenumberoptional
Price
Example: 1
products[].productUrlstringoptional
Product link
Example: https://example.com/image.jpg
products[].releaseTimestringoptional
Listing/release time
products[].reviewsintegeroptional
Review count
Example: 1
products[].reviewsWeeklyintegeroptional
Weekly new reviews
Example: 1
products[].salesTotalintegeroptional
Total sales
Example: 1
products[].salesWeeklyintegeroptional
Weekly sales
Example: 1
products[].shipsFromstringoptional
Shipping country
products[].statusintegeroptional
Product status: 1=active, 0=inactive
Example: 1
products[].storeNamestringoptional
Store name
products[].tagsstringoptional
Tags
products[].titlestringoptional
Product title
errcodeintegeroptional
Upstream status code returned by the provider.
errmsgstringoptional
Upstream status message returned by the provider.
codestringoptional
Provider-specific status code.
msgstringoptional
Provider-specific status message.
messagestringoptional
Provider-specific message.
costTimeintegeroptional
Execution time reported by the upstream provider.
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.

{
  "total": 1,
  "columns": [],
  "costToken": 1,
  "productNum": 1,
  "products": [
    {
      "favorites": 1,
      "favoritesWeekly": 1,
      "imageUrl": "https://example.com/image.jpg",
      "isBestsell": 1,
      "isPick": 1,
      "isRaving": 1,
      "price": 1,
      "productUrl": "https://example.com/image.jpg",
      "reviews": 1,
      "reviewsWeekly": 1,
      "salesTotal": 1,
      "salesWeekly": 1,
      "status": 1
    }
  ]
}

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_etsy_product_query",
    "arguments": {
      "pageSize": 10,
      "searchKey": "phone case",
      "page": 1
    }
  }
}

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/etsy-product-query/run
MCP method
nexscope_etsy_product_query
cURL
curl -X POST \
  https://claw-callback.nexscope.ai/api/skill-api/v1/skills/etsy-product-query/run \
  -H "Authorization: Bearer nk-..." \
  -H "Content-Type: application/json" \
  -d '{ "pageSize": 10, "searchKey": "phone case", "page": 1 }'
Response
No response yet. Run the request to see the response here.