Marketplace
No threads yet
Live

get_search_suggestions

thredup.com

Gets autocomplete suggestions and query interpretations from https://thredup.com for a partial fashion search. Returns segment tags and reusable filter context for catalog search.

Parameters3
Runs9
Updated10d ago
Operational9 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 get_search_suggestions?

Gets autocomplete suggestions and query interpretations from https://thredup.com for a partial fashion search. Returns segment tags and reusable filter context for catalog search. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass partial_query, department, limit and get the result back without maintaining a scraper.

Response

{
  "correction": {},
  "department": "<string>",
  "suggestions": [
    {}
  ],
  "partial_query": "<string>",
  "default_result": {},
  "interpretations": [
    {}
  ],
  "suggestion_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/a478983a-fb58-425b-8573-ce902ae2356d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "a478983a-fb58-425b-8573-ce902ae2356d",
    "variables": {
        "partial_query": "nike shoes",
        "department": "women",
        "limit": 10
    }
}'

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="a478983a-fb58-425b-8573-ce902ae2356d") — the "get_search_suggestions" function, which gets autocomplete suggestions and query interpretations from https://thredup.com for a partial fashion search. Returns segment tags and reusable filter context for catalog search..

It takes partial_query (str), department (str), limit (int). Return the result as structured JSON.