Production version 1.0
Hello and Welcome to Gento Checker Documentation!
Introducing Gento Checker - Credit Card Checker
Gento Checker is an advanced checking tool crafted specifically with an elastic server to minimize downtime. This cutting-edge tool is designed to provide optimal performance, ensuring a reliable and efficient credit card checking experience. Take advantage of Gento Checker's features to credit card Checker, To improve your valid rate on spam cc. Elevate your security measures with Gento Checker, your go-to solution for credit card checking.
To get started with Gento Checker, you will need the following:
To make an API request, use the provided code snippet in your Python script or terminal:
curl -X POST "https://gento.system/checker?api={API KEY}&gate={gateid}&cc={datacc}"
{ "status": "DECLINED", "ccnum": "4724090324268653", "ccmo": "12", "ccyy": "24", "cvv": "772", "brand": "VISA", "level": "CLASSIC", "type": "DEBIT", "bank": "TD CANADA TRUST", "country": "CA", "reason": "generic_decline", "credit": 744, "chekcedon": "Gento Checker stripe" }
Example For DECLINED Credit Card.
{ "status": "Approved", "ccnum": "4724090324268653", "ccmo": "12", "ccyy": "24", "cvv": "772", "brand": "VISA", "level": "CLASSIC", "type": "DEBIT", "bank": "TD CANADA TRUST", "country": "CA", "credit": 744, "chekcedon": "Gento Checker stripe" }
That is when a credit card successful do a charge in a merchant.
<?php $api = 'Your Api Key Here'; $gateid = 'Gate id'; //get from service query $cc = '4724090324268653|12|24|77'; // Replace with the CC you want to check // Set the API endpoint URL $apiUrl = 'https://gento.system/checker'; $ch = curl_init(); // Set cURL options curl_setopt($ch, CURLOPT_URL, $apiUrl . '?api=' . $api. '&gate=' . $gateid. '&cc='. $cc); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // Execute cURL request and get the response $response = curl_exec($ch); // Check for cURL errors if (curl_errno($ch)) { echo 'Error: ' . curl_error($ch); // Handle cURL error here } // Close cURL resource curl_close($ch); // Decode the JSON response $data = json_decode($response, true); if ($data['status'] == "DECLINED") { echo 'Your Credit card was Declined.'; } elseif ($data['status'] == "Approved") { // IP address found, display the list of domains echo 'Your credit card was approved '; } else { // Handle other response scenarios or errors echo 'Error occurred: ' . $data['message']; } ?>
That is example script from us, you can develop the script by your self
If you can coding you can download our CLI Mode Checker
To get started with Gento Checker CLI, you will need the following:
For download CLI you can visit our github repositories:
To use CLI Checker On windows you can follow this steps
After you following the step, you can chose your checker version, like nodejs or python version
To use CLI Checker On windows you can follow this steps
sudo apt update && sudo apt upgrade -y
curl -sL https://deb.nodesource.com/setup_18.x | sudo bash - sudo apt install nodejs -y
git clone https://github.com/hartanto-brothers/gento-checker-nodejs
cd gento-checker-nodejs
npm install
After you following the step, you can chose your checker version, like nodejs or python version
First you need install the Requirements module, you can install it by running this command
pip3 install -r requirements.txt
After All Module Installed You can run the checker by running this command
python3 main.py
First you need install the Requirements module, you can install it by running this command
npm install
After All Module Installed You can run the checker by running this command
node index
OR you can use npm
npm start
Description: This endpoint for Authentication.
Metode HTTP | POST |
---|---|
API URL | https://gento.system/auth |
Format Respon | JSON |
Parameter | Description |
---|---|
api | Your Api Key. |
{ "username": "myuseraccount", "credit": 744, "apikey": "wQbnNvAgzxwBgWNvgWo1" }
Description: This endpoint for Get services.
Metode HTTP | POST |
---|---|
API URL | https://gento.system/services |
Format Respon | JSON |
Parameter | Description |
---|---|
api | Your Api Key. |
{ "CCC": [ { "name": "Stripe Gate 1", "desc": "Stripe Gate 1 Charge $1", "gateid": "stripe1", "chargelive": 3, "chargedie": 1 }, { "name": "Stripe Gate 2", "desc": "Stripe Gate 2 Charge $2", "gateid": "stripe2", "chargelive": 3, "chargedie": 2 }, { "name": "Stripe Gate 3", "desc": "Stripe Gate 3 Charge $1", "gateid": "stripe3", "chargelive": 3, "chargedie": 2 } ], "braintree": [ { "name": "Braintree Gate 1", "desc": "Braintree E-Commerce Charge $1", "gateid": "braintree1", "chargelive": 4, "chargedie": 2 } ] }
Description: This endpoint for Do a checking credit card.
Metode HTTP | POST |
---|---|
API URL | https://gento.system/checker |
Format Respon | JSON |
Parameter | Description |
---|---|
api | Your Api Key. |
gate | Gate ID. |
cc | Data CC. |
{ "status": "DECLINED", "ccnum": "4724090324268653", "ccmo": "12", "ccyy": "24", "cvv": "772", "brand": "VISA", "level": "CLASSIC", "type": "DEBIT", "bank": "TD CANADA TRUST", "country": "CA", "reason": "generic_decline", "credit": 744, "chekcedon": "Gento Checker stripe" }
{ "status": "Approved", "ccnum": "4724090324268653", "ccmo": "12", "ccyy": "24", "cvv": "772", "brand": "VISA", "level": "CLASSIC", "type": "DEBIT", "bank": "TD CANADA TRUST", "country": "CA", "credit": 744, "chekcedon": "Gento Checker stripe" }
{ "status": "RECHECK", "data": "ccnum|mm|yy|cvv", "reason": "Proxy Error" }
Code released under the MIT License.
For more information about copyright and license check opensource.org.