Marketplace
No threads yet
Live

search_ace_fitness_exercises

acefitness.org

Searches the ACE Fitness exercise library on https://acefitness.org by keyword. Returns up to 10 exercises per page with title, URL, description, image, and pagination metadata.

Parameters2
Runs17
Updated10d ago
Degraded17 runs · 70.5% 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_ace_fitness_exercises?

Searches the ACE Fitness exercise library on https://acefitness.org by keyword. Returns up to 10 exercises per page with title, URL, description, image, and pagination metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass keyword, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "query": "<string>",
  "exercises": [
    {
      "url": "<string>",
      "image": "<string>",
      "title": "<string>",
      "description": "<string>"
    }
  ],
  "page_size": 0,
  "has_next_page": true,
  "estimated_total_results": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/294cf298-ccc6-41c6-842b-717c692f636c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "294cf298-ccc6-41c6-842b-717c692f636c",
    "variables": {
        "keyword": "plank",
        "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="294cf298-ccc6-41c6-842b-717c692f636c") — the "search_ace_fitness_exercises" function, which searches the ACE Fitness exercise library on https://acefitness.org by keyword. Returns up to 10 exercises per page with title, URL, description, image, and pagination metadata..

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