| Recommend this page to a friend! | 
|  Download | 
| Info | Documentation |  Files |  Install with Composer |  Download | Reputation | Support forum | Blog | Links | 
| Ratings | Unique User Downloads | Download Rankings | ||||
| Not yet rated by the users | Total: 31 | All time:  11,135 This week: 206  | ||||
| Version | License | PHP version | Categories | |||
| api_php 1.0.0 | GNU General Publi... | 5 | PHP 5, Web services, Finances | 
| Description | Author | |
| This class can lookup bank issuer number data using BinTable API. | 
The Nodejs Package for BINTable.com API
Please run > composer require bintable/api_php
The package contains two endpoints - BIN Lookup endpoint - Balance check endpoint
For calling BIN lookup, you can use the following code after replacing the BIN, and API_KEY with valid data.
require_once __DIR__ . '/vendor/autoload.php';
use Bintable\BintableApi;
try{
    $pi_key = ""; //YOUR API KEY
    $bintable = new BintableApi($pi_key);
    $lookup = $bintable->Lookup("403244");
    echo $lookup;
}catch(Exception $ex){
    echo $ex->getMessage();
}
For Calling Balance check
require_once __DIR__ . '/vendor/autoload.php';
use Bintable\BintableApi;
try{
    $pi_key = ""; //YOUR API KEY
    $bintable = new BintableApi($pi_key);
    $balance = $bintable->Balance();
    echo $balance;
}catch(Exception $ex){
    echo $ex->getMessage();
}
For more information and API key, please visit [BINTable BIN Lookup API] <https://bintable.com/get-api>
|  Files (3) | 
| File | Role | Description | ||
|---|---|---|---|---|
|  src (1 directory) | ||||
|    composer.json | Data | Auxiliary data | ||
|    readme.md | Doc. | Documentation | ||
| The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page. | 
|  Install with Composer | 
| Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
| 100% | 
 | 
 | 
| Applications that use this package | 
 If you know an application of this package, send a message to the author to add a link here.
 If you know an application of this package, send a message to the author to add a link here.