Marketplace
No threads yet
Live

get_credit_card_details

paisabazaar.com

Gets full credit card details from https://paisabazaar.com for a bank_slug and card_slug pair, including fees and charges, feature highlights, eligibility criteria, and FAQs.

Parameters3
Runs59
Updated8d ago
Degraded59 runs · 66.1% 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 get_credit_card_details?

Gets full credit card details from https://paisabazaar.com for a bank_slug and card_slug pair, including fees and charges, feature highlights, eligibility criteria, and FAQs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass bank_slug, card_slug, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "faqs": [
    {
      "answer": "<string>",
      "question": "<string>"
    }
  ],
  "rating": "<string>",
  "bank_name": "<string>",
  "bank_slug": "<string>",
  "card_name": "<string>",
  "card_slug": "<string>",
  "categories": [
    "<string>"
  ],
  "page_title": "<string>",
  "source_url": "<string>",
  "updated_on": "<string>",
  "key_features": [
    {
      "title": "<string>",
      "description": "<string>"
    }
  ],
  "about_summary": "<string>",
  "fees_and_charges": [
    {
      "amount": "<string>",
      "particular": "<string>"
    }
  ],
  "suitability_points": [
    "<string>"
  ],
  "first_year_fee_text": "<string>",
  "eligibility_criteria": [
    "<string>"
  ],
  "rewards_program_points": [
    "<string>"
  ],
  "other_features_and_benefits": [
    "<string>"
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/2865ed80-ebfe-4043-8cbd-5e35f93c3baa/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "2865ed80-ebfe-4043-8cbd-5e35f93c3baa",
    "variables": {
        "bank_slug": "hdfc-bank",
        "card_slug": "hdfc-regalia-gold-credit-card",
        "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="2865ed80-ebfe-4043-8cbd-5e35f93c3baa") — the "get_credit_card_details" function, which gets full credit card details from https://paisabazaar.com for a bank_slug and card_slug pair, including fees and charges, feature highlights, eligibility criteria, and FAQs..

It takes bank_slug (str), card_slug (str), timeout_seconds (int). Return the result as structured JSON.