list_bank_credit_cards
paisabazaar.comReturns every credit card listed for a requested bank on Paisabazaar (https://paisabazaar.com), including fees, highlights, categories, issuer details, and relevant card links. Accepts a bank name or Paisabazaar bank slug.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_bank_credit_cards?
Returns every credit card listed for a requested bank on Paisabazaar (https://paisabazaar.com), including fees, highlights, categories, issuer details, and relevant card links. Accepts a bank name or Paisabazaar bank slug. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass bank and get the result back without maintaining a scraper.
Response
{
"bank": "<string>",
"cards": [
{
"slug": "<string>",
"bank_id": "<string>",
"card_id": "<string>",
"bank_name": "<string>",
"card_name": "<string>",
"annual_fee": "<string>",
"categories": [
{
"image_url": "<string>",
"category_id": "<string>",
"category_name": "<string>"
}
],
"highlights": [
"<string>"
],
"details_url": "<string>",
"joining_fee": "<string>",
"card_image_url": "<string>",
"eligibility_url": "<string>",
"fee_information": "<string>",
"detailed_highlights": [
"<string>"
],
"terms_and_conditions_url": "<string>"
}
],
"count": 0,
"page_title": "<string>",
"source_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/375f67d4-2c80-45a2-847a-417f3ef10ae2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "375f67d4-2c80-45a2-847a-417f3ef10ae2",
"variables": {
"bank": "hdfc-bank"
}
}'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="375f67d4-2c80-45a2-847a-417f3ef10ae2") — the "list_bank_credit_cards" function, which returns every credit card listed for a requested bank on Paisabazaar (https://paisabazaar.com), including fees, highlights, categories, issuer details, and relevant card links. Accepts a bank name or Paisabazaar bank slug.. It takes bank (str). Return the result as structured JSON.