Marketplace
No threads yet
Live

search_products

backmarket.com

Searches refurbished products on https://backmarket.com by keyword through Back Market's Algolia-backed catalog. Returns zero-based paginated listings with product UUIDs, prices, brands, models, images, and all other nonempty product attributes.

Parameters3
Runs15
Updated10d ago
Degraded15 runs · 86.6% 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 refurbished products on https://backmarket.com by keyword through Back Market's Algolia-backed catalog. Returns zero-based paginated listings with product UUIDs, prices, brands, models, images, and all other nonempty product attributes. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page, hits_per_page and get the result back without maintaining a scraper.

Response

{
  "hits": [
    {
      "id": "<string>",
      "brand": "<string>",
      "image": "<string>",
      "model": "<string>",
      "price": 0,
      "title": "<string>",
      "currency": "<string>",
      "object_id": "<string>",
      "attributes": {}
    }
  ],
  "page": 0,
  "query": "<string>",
  "source": "<string>",
  "total_hits": 0,
  "total_pages": 0,
  "hits_per_page": 0,
  "processing_time_ms": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/22d2a3d2-b19f-41cd-99de-a22efa2cd2a9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "22d2a3d2-b19f-41cd-99de-a22efa2cd2a9",
    "variables": {
        "query": "iPhone 15",
        "page": 0,
        "hits_per_page": 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="22d2a3d2-b19f-41cd-99de-a22efa2cd2a9") — the "search_products" function, which searches refurbished products on https://backmarket.com by keyword through Back Market's Algolia-backed catalog. Returns zero-based paginated listings with product UUIDs, prices, brands, models, images, and all other nonempty product attributes..

It takes query (str), page (int), hits_per_page (int). Return the result as structured JSON.