Marketplace
No threads yet
Live

search_products

thredup.com

Searches https://thredup.com for secondhand fashion items with catalog filters, sorting, and page-based pagination. Returns detailed product records including prices, condition, sizing, materials, photos, and sustainability metrics.

Parameters8
Runs13
Updated10d ago
Operational13 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is search_products?

Searches https://thredup.com for secondhand fashion items with catalog filters, sorting, and page-based pagination. Returns detailed product records including prices, condition, sizing, materials, photos, and sustainability metrics. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, department, category, brand, condition, sort_by, page, page_size and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "query": "<string>",
  "filters": {},
  "sort_by": "<string>",
  "products": [
    {}
  ],
  "page_size": 0,
  "correction": {},
  "total_count": 0,
  "has_next_page": true,
  "total_count_is_capped": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/687c8898-be26-4ac8-a738-b826c5c09a14/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "687c8898-be26-4ac8-a738-b826c5c09a14",
    "variables": {
        "query": "cashmere sweater",
        "department": "women",
        "category": "",
        "brand": "",
        "condition": "",
        "sort_by": "relevance",
        "page": 1,
        "page_size": 12
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="687c8898-be26-4ac8-a738-b826c5c09a14") — the "search_products" function, which searches https://thredup.com for secondhand fashion items with catalog filters, sorting, and page-based pagination. Returns detailed product records including prices, condition, sizing, materials, photos, and sustainability metrics..

It takes query (str), department (str), category (str), brand (str), condition (str), sort_by (str), page (int), page_size (int). Return the result as structured JSON.