Marketplace
No threads yet
Live

list_supported_bank_slugs

paisabazaar.com

Lists supported Paisabazaar credit-card bank slugs from https://paisabazaar.com that have valid bank listing pages and sample card detail pages. Useful as input for bank and card-detail lookup functions.

Parameters2
Runs9
Updated8d ago
Operational9 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_supported_bank_slugs?

Lists supported Paisabazaar credit-card bank slugs from https://paisabazaar.com that have valid bank listing pages and sample card detail pages. Useful as input for bank and card-detail lookup functions. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass require_detail_sections, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "bank_slugs": [
    {
      "bank_slug": "<string>",
      "bank_page_url": "<string>",
      "sample_card_url": "<string>",
      "sample_card_slug": "<string>"
    }
  ],
  "source_urls": [
    "<string>"
  ],
  "require_detail_sections": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/a845b7be-cc14-47ab-8188-fdaffd55953d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "a845b7be-cc14-47ab-8188-fdaffd55953d",
    "variables": {
        "require_detail_sections": true,
        "timeout_seconds": 20
    }
}'

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="a845b7be-cc14-47ab-8188-fdaffd55953d") — the "list_supported_bank_slugs" function, which lists supported Paisabazaar credit-card bank slugs from https://paisabazaar.com that have valid bank listing pages and sample card detail pages. Useful as input for bank and card-detail lookup functions..

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