paisabazaar.com APIpaisabazaar.com ↗
Access Paisabazaar credit card data via API. Browse listings by bank or category, search by keyword, and retrieve fees, rewards, and eligibility details.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/9e477bc8-7a1c-4f2f-bcdb-11c2567823d3/list_credit_cards' \ -H 'X-API-Key: $PARSE_API_KEY'
List top 10 credit cards from the Paisabazaar top-10 page. Returns cards with fees, highlights, and category tags.
No input parameters required.
{
"type": "object",
"fields": {
"cards": "array of card objects with name, link, slug, image, joining_fee, annual_fee, categories, highlights, bank_name",
"total": "integer count of cards returned"
},
"sample": {
"data": {
"cards": [
{
"link": "https://www.paisabazaar.com/hdfc-bank/hdfc-diners-club-black-credit-card/",
"name": "HDFC Diners Club Black Metal Edition Credit Card",
"slug": "hdfc-diners-club-black-credit-card",
"image": "https://www.paisabazaar.com/wp-content/webp-express/webp-images/doc-root/wp-content/uploads/2024/04/HDFC-Diners-Club-Black-Credit-Card.png.webp",
"bank_name": "",
"annual_fee": "10000",
"categories": [
"Travel",
"Premium",
"Rewards"
],
"highlights": [
"Unlimited airport lounge access for primary and add-on members",
"High base rewards rate of 3.33% with 5 reward points per Rs. 150 spent"
],
"joining_fee": "10000"
}
],
"total": 10
},
"status": "success"
}
}About the paisabazaar.com API
The Paisabazaar API provides 7 endpoints for accessing credit card data from India's largest credit card comparison platform. Use list_credit_cards to retrieve the top-10 cards with fees and highlights, search_credit_cards to match cards by keyword across names, categories, and banks, or get_credit_card_details to pull structured fee tables, eligibility criteria, features, and FAQs for any specific card.
Credit Card Listings and Discovery
The list_credit_cards endpoint returns up to 10 cards from the Paisabazaar top-10 page, each with name, slug, joining_fee, annual_fee, categories, highlights, and bank_name. For broader discovery, list_credit_cards_by_bank accepts a bank_slug parameter (e.g. hdfc-bank, sbi-bank, axis-bank) and returns all cards listed under that bank. list_credit_cards_by_category accepts a category_slug (e.g. travel-credit-cards) and returns all cards in that category. Use list_banks and list_categories to enumerate all valid slug values for either endpoint.
Search and Card Details
search_credit_cards accepts a free-text query and matches against card names, category tags, highlights, and bank names using OR logic — each word in a multi-word query is matched independently. Results include the full card object shape including slug, link, and fee fields. get_credit_card_details requires both bank_slug and card_slug (both retrievable from listing endpoint link fields) and returns a structured fees_and_charges object, an eligibility array, a features array, and a faqs array with question and answer fields for each entry.
Response Structure
All listing endpoints return a consistent card object shape: name, link, slug, image, joining_fee, annual_fee, categories (array), highlights (array), and bank_name. The total field on listing responses gives the integer count of cards returned. Detail responses diverge with structured sub-objects — fees_and_charges is a key-value map of fee label to amount, while features and eligibility are flat string arrays.
- Build a credit card comparison tool filtered by bank using list_credit_cards_by_bank with bank_slug
- Populate a travel rewards card finder using list_credit_cards_by_category with 'travel-credit-cards'
- Display full fee breakdowns and eligibility requirements using get_credit_card_details fees_and_charges and eligibility fields
- Power a card search feature in a personal finance app using search_credit_cards with user-entered queries
- Aggregate joining_fee and annual_fee data across all banks to compare cost-of-ownership programmatically
- Surface card FAQs and feature highlights in a chatbot or recommendation engine using the faqs and features arrays from get_credit_card_details
- Enumerate all supported card categories with list_categories to build a filterable navigation menu
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.