Gento Api docs

Production version 1.0


Introduction


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.

Features

  • Credit card checker: Check your cc result die or live cc with small charge.
  • Email Account Checker: Check Email login from IMAP method.

Requirements

To get started with Gento Checker, you will need the following:

  1. Code Editing Software (e.g., Dreamweaver, Sublime Text, or Visual Studio Code)
  2. CURL or node fetch(e.g., Google Chrome or Mozilla Firefox)
  3. FTP Tool to upload files to Server (e.g., FileZilla)

Getting Started

Example Usage

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}"
                        

Declined Response

                            {
                                "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.

Approved Response

                            {
                                "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.

Example Script

                          <?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

Download CLI Checker

If you can coding you can download our CLI Mode Checker

Requirements

To get started with Gento Checker CLI, you will need the following:

  1. Nodejs V18++
  2. Git bash ( For Windows Users )
  3. Python3 For CLI Python Version

Download

For download CLI you can visit our github repositories:

  1. Node.js Version
  2. Python Version

Usage

Windows User

To use CLI Checker On windows you can follow this steps

  1. Download Git bash from this Link
  2. After download you can install git bash properly
  3. Download Nodejs v18 from this Link
  4. After download you can install nodejs properly
  5. Download Python3 from this Link
  6. After download you can install python properly
  7. If you still confused you can visit our chanel on this Link
  8. After you following the step, you can chose your checker version, like nodejs or python version

    Linux User

    To use CLI Checker On windows you can follow this steps

    1. First you can update your repositories by running this command
       sudo apt update && sudo apt upgrade -y
    2. After You update your repositories you can install nodejs v18 by running this command
       
                                                                      curl -sL https://deb.nodesource.com/setup_18.x | sudo bash -
                                                                      sudo apt install nodejs -y
    3. After install nodejs you can clone our github repositories, for example i want to use nodejs CLI Checker
                                                                      git clone https://github.com/hartanto-brothers/gento-checker-nodejs
                                                                  
    4. After cloning repositories you can switch to folder gento-checker-nodejs by running this command
                                                                      cd gento-checker-nodejs
                                                                  
    5. After switch to folder, you can running install to install node_modules by running this command
                                                                      npm install
                                                                  
    6. After installing module you can run by npm run or npm start or node index.js
    7. If you still confused you can visit our chanel on this Link
    8. After you following the step, you can chose your checker version, like nodejs or python version

      Python Usage

      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
                                                          

      Nodejs Usage

      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
                                                          

Authentication API

Description: This endpoint for Authentication.

Metode HTTP POST
API URL https://gento.system/auth
Format Respon JSON

Parameters

Parameter Description
api Your Api Key.

Response

                                                        {
                                                            "username": "myuseraccount",
                                                            "credit": 744,
                                                            "apikey": "wQbnNvAgzxwBgWNvgWo1"
                                                        }
                                                

Get Services API

Description: This endpoint for Get services.

Metode HTTP POST
API URL https://gento.system/services
Format Respon JSON

Parameters

Parameter Description
api Your Api Key.

Response

                                                        {
                                                            "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
                                                              }
                                                            ]
                                                          }
                                                

Checker API

Description: This endpoint for Do a checking credit card.

Metode HTTP POST
API URL https://gento.system/checker
Format Respon JSON

Parameters

Parameter Description
api Your Api Key.
gate Gate ID.
cc Data CC.

Response

Declined Response

                            {
                                "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"
                              }
                        

Approved Response

                            {
                                "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"
                              }
                        

Recheck Response

                            {
                                "status": "RECHECK",
                                "data": "ccnum|mm|yy|cvv",
                                "reason": "Proxy Error"
                                
                            }
                            

Copyright and license

Code released under the MIT License.

For more information about copyright and license check opensource.org.