list_checklist_articles
beckett.comFetches paginated Beckett News checklist articles from https://beckett.com, including each article's title, URL, publication date, and summary. Results can be filtered with the Beckett sport category IDs returned by list_sport_categories.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_checklist_articles?
Fetches paginated Beckett News checklist articles from https://beckett.com, including each article's title, URL, publication date, and summary. Results can be filtered with the Beckett sport category IDs returned by list_sport_categories. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page, sport_id and get the result back without maintaining a scraper.
Response
{
"page": 0,
"articles": [
{
"id": 0,
"url": "<string>",
"date": "<string>",
"title": "<string>",
"summary": "<string>"
}
],
"sport_id": 0,
"page_size": 0,
"sport_name": "<string>",
"total_items": 0,
"total_pages": 0,
"has_next_page": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/6407266f-2dfb-4903-bc02-8496129ca4d6/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "6407266f-2dfb-4903-bc02-8496129ca4d6",
"variables": {
"page": 1,
"sport_id": 0
}
}'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="6407266f-2dfb-4903-bc02-8496129ca4d6") — the "list_checklist_articles" function, which fetches paginated Beckett News checklist articles from https://beckett.com, including each article's title, URL, publication date, and summary. Results can be filtered with the Beckett sport category IDs returned by list_sport_categories.. It takes page (int), sport_id (int). Return the result as structured JSON.