Card Checkers
Validate credit cards through multiple payment gateways with our powerful checker APIs.
Overview
Ender's Card Checker modules validate credit cards against various payment gateways. Each checker is optimized for specific use cases and provides detailed response information.
Card Format
All checkers accept cards in the format: number|mm|yy|cvv
Example: 4111111111111111|12|25|123
Available Checkers
Auth Checker
Validate if a card can be authenticated without charging
Charge Checker
Charge a small amount to validate if a card can complete transactions
Shopify Checker
Validate cards by attempting a purchase on Shopify stores
VBV Checker
Check if a card requires 3D Secure (VBV/Mastercard SecureCode)
Credit Costs
| Checker | Approved/Charged | Live | Dead | Error |
|---|---|---|---|---|
| Shopify | 5 | 3 | 1 | 0 |
| Charge | 5 | 3 | 1 | 0 |
| Auth | 5 | 3 | 1 | 0 |
| VBV | 2 (flat) | 2 | 2 | 0 |
Add +1 credit if using system proxy (no proxy provided in request).
Response Status Mapping
All checkers follow a consistent response pattern:
| Status | Description | UI Display |
|---|---|---|
| Approved/Charged | Card was successfully authenticated/charged | ✅ Approved |
| Live | Card is valid but not charged | 🔥 Live |
| Dead | Card was declined | ❌ Dead |
| Error | Technical error occurred | ⚠️ Error |
Common Request Parameters
All checker endpoints accept these common parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
cc | string | ✅ | Card in format number|mm|yy|cvv |
proxy | string | ❌ | Proxy URL (system proxy used if omitted) |
Proxy Formats
Ender supports multiple proxy formats:
Best Practices
- Use your own proxies — Save 1 credit per check
- Validate card format — Avoid unnecessary API calls
- Handle all status types — Build robust error handling
- Implement retry logic — Errors don't cost credits
- Rotate proxies — Avoid blocks and improve success rates
Quick Example
Next Steps
Explore each checker in detail:
- Auth Checker — Authentication validation
- Charge Checker — Transaction validation
- Shopify Checker — Shopify gateway validation
- VBV Checker — 3D Secure detection