search_catalog
rebuy.deSearches the full refurbished electronics and media catalog on https://www.rebuy.de. Returns current A1–A4 condition pricing, grade stock, ratings, recommended retail prices, savings, product metadata, and page-by-page availability.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_catalog?
Searches the full refurbished electronics and media catalog on https://www.rebuy.de. Returns current A1–A4 condition pricing, grade stock, ratings, recommended retail prices, savings, product metadata, and page-by-page availability. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, max_pages and get the result back without maintaining a scraper.
Response
{
"items": [
{}
],
"query": "<string>",
"has_more": true,
"next_page": 0,
"page_size": 0,
"pages_fetched": 0,
"items_returned": 0,
"total_available": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/57c2ceab-d410-4f67-9cbb-6038d961b6e2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "57c2ceab-d410-4f67-9cbb-6038d961b6e2",
"variables": {
"query": "iPhone 13",
"max_pages": 1
}
}'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="57c2ceab-d410-4f67-9cbb-6038d961b6e2") — the "search_catalog" function, which searches the full refurbished electronics and media catalog on https://www.rebuy.de. Returns current A1–A4 condition pricing, grade stock, ratings, recommended retail prices, savings, product metadata, and page-by-page availability.. It takes query (str), max_pages (int). Return the result as structured JSON.