Cardcheck APIcardcheck.in ↗
Compare credit card options by instantly accessing details on fees, rewards, eligibility requirements, and benefits from CardCheck.in's official Indian bank data. Find the perfect card for your needs by browsing comprehensive listings or reviewing specific card information all in one place.
curl -X GET 'https://api.parse.bot/scraper/5e8e2d1e-b214-44fd-a77a-2567fad2ff63/list_cards?limit=5' \ -H 'X-API-Key: $PARSE_API_KEY'
List credit cards available in India with summary details including rewards, fees, and key features. Supports optional filtering by bank name and card network. Returns paginated results from a catalog of ~150 cards. One upstream request fetches the full catalog; local filtering and pagination are applied on the result.
| Param | Type | Description |
|---|---|---|
| bank | string | Filter by bank name (case-insensitive substring match, e.g. 'HDFC', 'ICICI', 'SBI'). |
| skip | integer | Number of cards to skip for pagination. |
| limit | integer | Maximum number of cards to return per page. Clamped to 1–200. |
| network | string | Filter by card network (case-insensitive substring match, e.g. 'Visa', 'Mastercard', 'AMEX', 'RuPay'). |
{
"type": "object",
"fields": {
"skip": "number of cards skipped",
"cards": "array of card summary objects with id, name, bank, network, fees, reward info, and overview",
"limit": "page size used",
"total": "total number of cards matching filters (before pagination)"
},
"sample": {
"data": {
"skip": 0,
"cards": [
{
"id": "amazon-pay-icici",
"bank": "ICICI Bank",
"name": "Amazon Pay ICICI Bank Credit Card",
"network": "VISA",
"best_for": "Rewards on Amazon Purchases",
"networks": [
"Visa"
],
"card_type": "Co-branded",
"annual_fee": 0,
"joining_fee": 0,
"renewal_fee": 0,
"reward_type": "cashback",
"overview_text": "The Amazon Pay ICICI Bank Credit Card offers Amazon Prime members 5% unlimited cashback on Amazon.",
"forex_markup_pct": 1.99,
"reward_rate_max_pct": 5,
"reward_rate_min_pct": 1,
"fuel_surcharge_waiver": true,
"lounge_domestic_per_quarter": 1
}
],
"limit": 5,
"total": 148
},
"status": "success"
}
}About the Cardcheck API
The Cardcheck API on Parse exposes 2 endpoints for the publicly available data on cardcheck.in. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.