list_littleton_coin_categories
littletoncoin.comLists Littleton Coin Company catalog categories from https://www.littletoncoin.com. With no parent_id it returns each top-level category and its immediate children; with parent_id it returns that category's direct children.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_littleton_coin_categories?
Lists Littleton Coin Company catalog categories from https://www.littletoncoin.com. With no parent_id it returns each top-level category and its immediate children; with parent_id it returns that category's direct children. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass parent_id and get the result back without maintaining a scraper.
Response
{
"total": 0,
"parent_id": "<string>",
"categories": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/d3bd105e-78fc-4cc8-ac43-94af36053bf0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d3bd105e-78fc-4cc8-ac43-94af36053bf0",
"variables": {
"parent_id": ""
}
}'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="d3bd105e-78fc-4cc8-ac43-94af36053bf0") — the "list_littleton_coin_categories" function, which lists Littleton Coin Company catalog categories from https://www.littletoncoin.com. With no parent_id it returns each top-level category and its immediate children; with parent_id it returns that category's direct children.. It takes parent_id (str). Return the result as structured JSON.