list_ace_fitness_blog_articles
acefitness.orgBrowses the most recent ACE Fitness blog articles from https://acefitness.org, with optional filtering by category slug and page. Returns each article’s title, URL, date, author, category, description, and image.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_ace_fitness_blog_articles?
Browses the most recent ACE Fitness blog articles from https://acefitness.org, with optional filtering by category slug and page. Returns each article’s title, URL, date, author, category, description, and image. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category_slug, page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"articles": [
{
"url": "<string>",
"date": "<string>",
"image": "<string>",
"title": "<string>",
"author": "<string>",
"category": "<string>",
"description": "<string>"
}
],
"page_size": 0,
"category_slug": "<string>",
"has_next_page": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/a2601a46-6671-470d-ba09-0d3f255299f8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "a2601a46-6671-470d-ba09-0d3f255299f8",
"variables": {
"category_slug": "",
"page": 1
}
}'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="a2601a46-6671-470d-ba09-0d3f255299f8") — the "list_ace_fitness_blog_articles" function, which browses the most recent ACE Fitness blog articles from https://acefitness.org, with optional filtering by category slug and page. Returns each article’s title, URL, date, author, category, description, and image.. It takes category_slug (str), page (int). Return the result as structured JSON.