Marketplace
No threads yet
Live

list_credit_card_categories

paisabazaar.com

Returns all supported credit card category slugs and their category names and page URLs from https://paisabazaar.com for category-based card browsing.

Parameters1
Runs6
Updated3d ago
Operational6 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_credit_card_categories?

Returns all supported credit card category slugs and their category names and page URLs from https://paisabazaar.com for category-based card browsing. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "categories": [
    {
      "page_url": "<string>",
      "category_name": "<string>",
      "category_slug": "<string>"
    }
  ],
  "source_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/ba1cb6e3-fc96-42d1-bd96-4af070d3dbd2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "ba1cb6e3-fc96-42d1-bd96-4af070d3dbd2",
    "variables": {
        "timeout_seconds": 30
    }
}'

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="ba1cb6e3-fc96-42d1-bd96-4af070d3dbd2") — the "list_credit_card_categories" function, which returns all supported credit card category slugs and their category names and page URLs from https://paisabazaar.com for category-based card browsing..

It takes timeout_seconds (int). Return the result as structured JSON.