Auth Checker
Validate if a credit card can be authenticated through payment gateways.
Overview
The Auth Checker validates if a card can be authenticated (added as a payment method) without actually charging it. This is useful for verifying card validity before processing transactions.
Endpoint
Supported Gateways
| Gateway | Status | ID |
|---|---|---|
| Stripe | ✅ Live | stripe |
| Braintree | ✅ Live | braintree |
| Braintree 2 | ✅ Live | braintree_2 |
Request
Headers
Body Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
gate | string | ✅ | Gateway identifier: stripe, braintree, braintree_2 |
cc | string | ✅ | Card in format: number|mm|yy|cvv |
proxy | string | ❌ | Proxy URL (system proxy used if omitted) |
Example Request
Response
Success Response
Response Fields
| Field | Type | Description |
|---|---|---|
auth | boolean | Whether the card was authenticated |
live | boolean | Whether the card is live |
message | string | Status message from gateway |
status | string|null | Additional status code (for soft declines) |
Status Interpretation
auth | live | Meaning | Credits |
|---|---|---|---|
true | false | Card approved/authenticated | 5 |
false | true | Card is live | 3 |
false | false | Card is dead/declined | 1 |
| Error | - | Technical error | 0 |
Add +1 credit when using system proxy (no proxy provided).
Get Available Gates
List all available auth gates:
Response:
Error Responses
Invalid Gate
Invalid Card Format
Proxy Error
Complete Example
Best Practices
- Always validate card format before making API calls
- Use your own proxies to save 1 credit per check
- Handle all response statuses in your application
- Implement retry logic for network errors
- Rotate proxies to avoid detection
Related
- Charge Checker - Actually charge the card
- Shopify Checker - Check via Shopify gates
- VBV Checker - Check 3D Secure status