Marketplace
No threads yet
Live

search_supplements

muscleandstrength.com

Searches the Muscle & Strength supplement store at https://muscleandstrength.com and returns relevance-ranked, paginated products with prices, availability, deals, ratings, and slugs for detail lookup.

Parameters2
Runs12
Updated10d ago
Failing12 runs · 58.3% 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_supplements?

Searches the Muscle & Strength supplement store at https://muscleandstrength.com and returns relevance-ranked, paginated products with prices, availability, deals, ratings, and slugs for detail lookup. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "query": "<string>",
  "results": [
    {
      "url": "<string>",
      "deal": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "currency": "<string>",
      "in_stock": true,
      "image_alt": "<string>",
      "image_url": "<string>",
      "product_id": "<string>",
      "review_count": 0,
      "stock_status": "<string>",
      "current_price": 0,
      "original_price": 0,
      "rating_percent": 0
    }
  ],
  "page_size": 0,
  "sort_order": "<string>",
  "total_pages": 0,
  "has_next_page": true,
  "total_results": 0,
  "returned_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/96d7c0b5-e4b1-442a-9f4f-b26558d78c35/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "96d7c0b5-e4b1-442a-9f4f-b26558d78c35",
    "variables": {
        "query": "protein",
        "page": 1
    }
}'

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="96d7c0b5-e4b1-442a-9f4f-b26558d78c35") — the "search_supplements" function, which searches the Muscle & Strength supplement store at https://muscleandstrength.com and returns relevance-ranked, paginated products with prices, availability, deals, ratings, and slugs for detail lookup..

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