search_ace_trainers_by_zip
acefitness.orgFinds ACE certified fitness professionals near a U.S. ZIP code using https://acefitness.org. Returns trainer profile records including name, city/state, profile URL, profile image, and all non-empty trainer fields exposed by ACE.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_ace_trainers_by_zip?
Finds ACE certified fitness professionals near a U.S. ZIP code using https://acefitness.org. Returns trainer profile records including name, city/state, profile URL, profile image, and all non-empty trainer fields exposed by ACE. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass zip_code, radius_miles, page, page_size, country_code, sort_by, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"page": 0,
"sort_by": "<string>",
"trainers": [
{}
],
"zip_code": "<string>",
"page_size": 0,
"country_code": "<string>",
"radius_miles": 0,
"total_results": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/a02d1177-3800-45c7-8a9c-37cad44d68d3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "a02d1177-3800-45c7-8a9c-37cad44d68d3",
"variables": {
"zip_code": "92101",
"radius_miles": 10,
"page": 1,
"page_size": 12,
"country_code": "US",
"sort_by": "Default",
"timeout_seconds": 25
}
}'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="a02d1177-3800-45c7-8a9c-37cad44d68d3") — the "search_ace_trainers_by_zip" function, which finds ACE certified fitness professionals near a U.S. ZIP code using https://acefitness.org. Returns trainer profile records including name, city/state, profile URL, profile image, and all non-empty trainer fields exposed by ACE.. It takes zip_code (str), radius_miles (int), page (int), page_size (int), country_code (str), sort_by (str), timeout_seconds (int). Return the result as structured JSON.