get_item_details
thredup.comRetrieves full item details from https://thredup.com by item number or product URL. Returns comprehensive non-empty product fields including measurements, condition, characteristics, photos, and pricing.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_item_details?
Retrieves full item details from https://thredup.com by item number or product URL. Returns comprehensive non-empty product fields including measurements, condition, characteristics, photos, and pricing. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass item_number, product_url, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"item": {},
"found": true,
"source": "<string>",
"resolved_item_number": 0,
"resolved_product_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/a001d7d3-ad58-48ce-be7c-06e0adfbce26/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "a001d7d3-ad58-48ce-be7c-06e0adfbce26",
"variables": {
"item_number": "0",
"product_url": "https://www.thredup.com/product/230146682",
"timeout_seconds": 30
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="a001d7d3-ad58-48ce-be7c-06e0adfbce26") — the "get_item_details" function, which retrieves full item details from https://thredup.com by item number or product URL. Returns comprehensive non-empty product fields including measurements, condition, characteristics, photos, and pricing.. It takes item_number (int | str), product_url (str), timeout_seconds (int). Return the result as structured JSON.