High-Performance Shopify Card Checker API
| Param | Type | Required | Description |
|---|---|---|---|
site | string | YES | Shopify store URL (e.g. example.com) |
cc | string | YES | Card details: NUMBER|MM|YYYY|CVV |
proxy | string | YES | Proxy with auth: socks5://user:pass@host:port |
Replace the values below and open in browser or use curl:
curl "https://YOUR_HOST/shopify?site=example.com&cc=4111111111111111|12|2028|123&proxy=socks5://user:pass@host:1080"
Successful check response:
{
"Gateway": "Stripe Card Payments",
"Price": 25.99,
"Response": "CARD_DECLINED",
"Status": true,
"approved": false,
"by": "@Po9nstar",
"cc": "4111111111111111|12|2028|123",
"charged": false
}
Approved (OTP Required) response:
{
"Gateway": "Stripe Card Payments",
"Price": 9.99,
"Response": "OTP_REQUIRED",
"Status": true,
"approved": true,
"by": "@Po9nstar",
"cc": "5555555555554444|01|2027|321",
"charged": false
}
Error response (missing proxy):
{
"error": "Missing required 'proxy' parameter",
"status": false
}
| Field | Type | Description |
|---|---|---|
Gateway | string | Payment gateway name |
Price | float | Product price |
Response | string | Card response message |
Status | bool | Request completed successfully |
approved | bool | Card was approved / live |
charged | bool | Order was actually placed |
cc | string | Card used for the check |
by | string | API developer |