Marketplace
No threads yet
Live

search_products

efarmz.be

Searches https://www.efarmz.be by keyword and returns up to 10 matching products with price, brand, origin, categories, availability, and other non-empty product details. With no query it returns eFarmz's default product set.

Parameters3
Runs12
Updated10d ago
Degraded12 runs · 91.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 https://www.efarmz.be by keyword and returns up to 10 matching products with price, brand, origin, categories, availability, and other non-empty product details. With no query it returns eFarmz's default product set. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, language, limit and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "query": "<string>",
  "language": "<string>",
  "products": [
    {}
  ],
  "source_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/8467a32a-b088-493b-a6da-1688eab6578d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "8467a32a-b088-493b-a6da-1688eab6578d",
    "variables": {
        "query": "",
        "language": "fr",
        "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="8467a32a-b088-493b-a6da-1688eab6578d") — the "search_products" function, which searches https://www.efarmz.be by keyword and returns up to 10 matching products with price, brand, origin, categories, availability, and other non-empty product details. With no query it returns eFarmz's default product set..

It takes query (str), language (str), limit (int). Return the result as structured JSON.