Marketplace Search
Find second-hand listings and products across regions
Search major marketplace domains and shopping indexes for used goods, classifieds, auctions, and online product offers across multiple regions. Useful when you want one search workflow without setting up source-specific marketplace credentials.
Search multiple marketplace domains and shopping indexes for second-hand listings, classifieds, auctions, and product offers with region, source, condition, and listing-class filters.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "marketplace-search",
"skill": "search_listings",
"input": {
"query": "Herman Miller Aeron",
"source": "all",
"regions": [
"UK",
"EU"
],
"condition": "used",
"limit": 8
}
}' \
https://api.toolrouter.com/v1/tools/callPreview a single marketplace URL so you can inspect the title, description, image, inferred source, region, listing id, and any price text available from metadata.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "marketplace-search",
"skill": "listing_details",
"input": {
"url": "https://www.ebay.com/itm/325123456789"
}
}' \
https://api.toolrouter.com/v1/tools/callGenerate a compact marketplace snapshot for a query so you can monitor new listings, prices, and sources over time without storing state in the tool.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "marketplace-search",
"skill": "watchlist_snapshot",
"input": {
"query": "Leica Q2",
"regions": [
"EU"
],
"condition": "used",
"limit": 6
}
}' \
https://api.toolrouter.com/v1/tools/callShow which marketplaces are active for a given region or listing class in the no-key version of the tool, including caveats and access tiers.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "marketplace-search",
"skill": "source_coverage",
"input": {
"regions": [
"EU"
],
"listing_classes": [
"classified"
]
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"marketplace-search","skill":"search_listings","input":{}}' \
https://api.toolrouter.com/v1/tools/call