Live
get_checklist_article_data
beckett.comExtracts checklist tabs and article metadata, including sport, collection, manufacturer, and year, from a checklist article on https://beckett.com.
Parameters1
Runs6
Updated3d ago
Operational6 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_checklist_article_data?
Extracts checklist tabs and article metadata, including sport, collection, manufacturer, and year, from a checklist article on https://beckett.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass article_url and get the result back without maintaining a scraper.
Response
{
"slug": "<string>",
"tabs": {},
"tags": [
"<string>"
],
"year": "<string>",
"sport": "<string>",
"title": "<string>",
"article_id": 0,
"author_url": "<string>",
"categories": [
"<string>"
],
"article_url": "<string>",
"author_name": "<string>",
"description": "<string>",
"modified_at": "<string>",
"manufacturer": "<string>",
"published_at": "<string>",
"comment_count": 0,
"checklist_files": [
{
"url": "<string>",
"text": "<string>"
}
],
"collection_name": "<string>",
"featured_image_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/b76674bf-6d05-4ee1-bf63-832347aabd12/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "b76674bf-6d05-4ee1-bf63-832347aabd12",
"variables": {
"article_url": "DEFAULT_ARTICLE_URL"
}
}'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="b76674bf-6d05-4ee1-bf63-832347aabd12") — the "get_checklist_article_data" function, which extracts checklist tabs and article metadata, including sport, collection, manufacturer, and year, from a checklist article on https://beckett.com.. It takes article_url (str). Return the result as structured JSON.