Marketplace
No threads yet
Live

list_category_credit_cards

paisabazaar.com

Lists all credit cards shown on a category page on https://paisabazaar.com, including fees, highlights, tags, and card links. Accepts a Paisabazaar category slug such as travel-credit-cards.

Parameters3
Runs10
Updated8d ago
Operational10 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_category_credit_cards?

Lists all credit cards shown on a category page on https://paisabazaar.com, including fees, highlights, tags, and card links. Accepts a Paisabazaar category slug such as travel-credit-cards. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category_slug, include_compare_cards, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "cards": [
    {
      "slug": "<string>",
      "tags": [
        {
          "image_url": "<string>",
          "category_id": "<string>",
          "category_name": "<string>"
        }
      ],
      "title": "<string>",
      "bank_id": "<string>",
      "card_id": "<string>",
      "bank_name": "<string>",
      "bank_slug": "<string>",
      "card_name": "<string>",
      "card_slug": "<string>",
      "annual_fee": "<string>",
      "highlights": [
        "<string>"
      ],
      "details_url": "<string>",
      "joining_fee": "<string>",
      "category_ids": [
        "<string>"
      ],
      "details_path": "<string>",
      "card_image_url": "<string>",
      "fee_information": "<string>",
      "highlight_details": [
        "<string>"
      ],
      "listed_in_sections": [
        "<string>"
      ],
      "check_eligibility_url": "<string>",
      "terms_and_conditions_url": "<string>"
    }
  ],
  "count": 0,
  "page_title": "<string>",
  "source_url": "<string>",
  "category_slug": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/6e8d8677-65b1-470c-9b11-4e83b6e2f8ab/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "6e8d8677-65b1-470c-9b11-4e83b6e2f8ab",
    "variables": {
        "category_slug": "travel-credit-cards",
        "include_compare_cards": true,
        "timeout_seconds": 45
    }
}'

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="6e8d8677-65b1-470c-9b11-4e83b6e2f8ab") — the "list_category_credit_cards" function, which lists all credit cards shown on a category page on https://paisabazaar.com, including fees, highlights, tags, and card links. Accepts a Paisabazaar category slug such as travel-credit-cards..

It takes category_slug (str), include_compare_cards (bool), timeout_seconds (int). Return the result as structured JSON.