list_repmax_articles
repmaxmedia.comLists RepMax Media articles from https://repmaxmedia.com with optional search, category filtering, and pagination. Returns up to nine article records per page, available categories, and pagination metadata.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_repmax_articles?
Lists RepMax Media articles from https://repmaxmedia.com with optional search, category filtering, and pagination. Returns up to nine article records per page, available categories, and pagination metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, category, page and get the result back without maintaining a scraper.
Response
{
"query": "<string>",
"articles": [
{}
],
"category": "<string>",
"pagination": {
"has_next": true,
"per_page": 0,
"next_page": 0,
"total_pages": 0,
"current_page": 0,
"has_previous": true,
"previous_page": 0,
"returned_count": 0,
"total_articles": 0
},
"available_categories": [
"<string>"
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/a1d963e1-d299-4308-bff0-7e858229d072/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "a1d963e1-d299-4308-bff0-7e858229d072",
"variables": {
"query": "",
"category": "",
"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="a1d963e1-d299-4308-bff0-7e858229d072") — the "list_repmax_articles" function, which lists RepMax Media articles from https://repmaxmedia.com with optional search, category filtering, and pagination. Returns up to nine article records per page, available categories, and pagination metadata.. It takes query (str), category (str), page (int). Return the result as structured JSON.