Discover/Paisabazaar API
live

Paisabazaar 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.

Endpoint health
verified 1d ago
list_credit_cards_by_category
search_credit_cards
list_credit_cards
list_credit_cards_by_bank
list_banks
7/7 passing latest checkself-healing
Endpoints
7
Updated
26d ago

What is the Paisabazaar 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.

Try it

No input parameters required.

api.parse.bot/scraper/9e477bc8-7a1c-4f2f-bcdb-11c2567823d3/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/9e477bc8-7a1c-4f2f-bcdb-11c2567823d3/list_credit_cards' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace paisabazaar-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Paisabazaar Credit Card API — browse, search, and drill into card details."""
from parse_apis.paisabazaar_credit_card_api import Paisabazaar, BankSlug, CategorySlug, CardNotFound

client = Paisabazaar()

# List top-rated credit cards (single page, capped)
for card in client.creditcards.list_top(limit=5):
    print(card.name, "| Annual Fee:", card.annual_fee, "| Categories:", card.categories)

# Search for cashback cards and drill into the first result's details
card = client.creditcards.search(query="cashback", limit=1).first()
if card:
    print("Found:", card.name, "| Slug:", card.slug)
    detail = card.details.get(bank_slug=BankSlug.SBI_BANK)
    print("Features:", detail.features[:2])
    print("Fees:", detail.fees_and_charges)

# Browse a specific bank's cards via constructible Bank resource with enum
for card in client.bank(BankSlug.HDFC_BANK).credit_cards.list(limit=3):
    print(card.name, "| Joining Fee:", card.joining_fee, "| Highlights:", card.highlights[:1])

# Browse a category's cards using the CategorySlug enum
for card in client.category(CategorySlug.TRAVEL_CREDIT_CARDS).credit_cards.list(limit=3):
    print(card.name, "| Bank:", card.bank_name)

# Typed error handling on card details
try:
    result = client.creditcards.search(query="regalia", limit=1).first()
    if result:
        result.details.get(bank_slug=BankSlug.HDFC_BANK)
except CardNotFound as exc:
    print(f"Card not found: bank_slug={exc.bank_slug}, card_slug={exc.card_slug}")

print("Exercised: creditcards.list_top / creditcards.search / card.details.get / bank.credit_cards.list / category.credit_cards.list")
All endpoints · 7 totalmissing one? ·

List the top 10 credit cards from the Paisabazaar top-10 page. Returns cards with fees, highlights, and category tags. Single-page response with no pagination.

Input

No input parameters required.

Response
{
  "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"
  }
}

About the Paisabazaar API

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.

Reliability & maintenanceVerified

The Paisabazaar API is a managed, monitored endpoint for paisabazaar.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when paisabazaar.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official paisabazaar.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
1d ago
Latest check
7/7 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • 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
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does Paisabazaar offer an official developer API?+
Paisabazaar does not publish a public developer API or documented data access program. This Parse API provides structured access to the card listing and detail data available on paisabazaar.com.
What does get_credit_card_details return beyond what listing endpoints provide?+
The detail endpoint returns four structured fields not present in listing responses: a fees_and_charges key-value object (e.g. late payment fee, cash advance fee), a features array of benefit descriptions, an eligibility array of qualification criteria, and a faqs array with question-answer pairs specific to that card. Listing endpoints return only name, slug, joining_fee, annual_fee, categories, highlights, and bank_name.
How does multi-word search work in search_credit_cards?+
Each word in the query is matched independently using OR logic. A query like 'travel lounge' will return cards that match either 'travel' or 'lounge' anywhere in their name, categories, highlights, or bank name — not only cards that contain both words together.
Does the API return user reviews or ratings for credit cards?+
Not currently. The API covers card fees, features, eligibility, FAQs, and category tags. User review scores or rating counts are not part of any endpoint's response. You can fork it on Parse and revise to add an endpoint that retrieves user review data for individual cards.
Does the API support pagination for large bank or category listings?+
Not currently. The list_credit_cards_by_bank and list_credit_cards_by_category endpoints return all cards available on the corresponding page in a single response, with a total count field. There are no page or offset parameters. You can fork it on Parse and revise to add pagination support if a specific bank or category listing grows large.
Page content last updated . Spec covers 7 endpoints from paisabazaar.com.
Related APIs in FinanceSee all →
moneyhero.com.hk API
Compare Hong Kong credit cards side-by-side with detailed information on cashback rewards, annual fees, income requirements, interest rates, and welcome offers to find the best card for your needs. Search and filter cards by features, rewards programs, and eligibility criteria to make an informed decision.
caixabank.es API
Access CaixaBank's full catalogue of financial products — accounts, cards, loans, mortgages, savings, investments, insurance, and pension plans — along with real-time pricing, TAE/TIN interest rates, and branch or ATM locations across Spain.
nerdwallet.com API
Access current mortgage rates, top-rated credit card recommendations, detailed card information, and expert financial articles — all sourced from NerdWallet. Compare lenders, explore card features, APRs, rewards programs, and stay up to date with mortgage guides and resources.
baccarat.com API
Search and browse Baccarat's complete product catalog, view items by category, and access detailed product information including specifications and pricing. Find store locations and navigate through Baccarat's product categories to discover luxury crystal and home décor items.
giftcards.com API
Search for gift cards across brands and categories, and retrieve discounted cards with their promotion rules and current discount rates. Compare gift card prices programmatically to find the best available savings.
bazaardb.gg API
Search and retrieve comprehensive data about The Bazaar game cards, including items, skills, merchants, trainers, monsters, and events with full details like tiers, attributes, enchantments, and tooltips. Quickly find the specific card information you need to optimize your gameplay strategy and deck building.
shopsy.in API
Search and browse products on Shopsy.in with detailed information like pricing, categories, and current deals, while easily navigating through paginated results. Get access to product specifications, homepage promotions, and category listings to compare items and find the best offers.
bizbuysell.com API
Search for businesses available for sale across multiple categories and view detailed information about specific listings on BizBuySell.com. Browse business categories to explore different industries and find opportunities that match your investment interests.