PHP Classes
elePHPant
Icontem

PHP BIN Lookup API: Lookup bank issuer number data using BinTable API

Recommend this page to a friend!

  Author Author  
Name: Samy Massoud <contact>
Classes: 3 packages by
Country: Egypt Egypt
Innovation award
Innovation award
Nominee: 1x


  Detailed description   Download Download .zip .tar.gz  
This class can lookup bank issuer number data using BinTable API.

It can send HTTP requests to the BinTable API Web server to perform requests related with banks. Currently it can:

- Lookup for a given bank code and return the bank name and other details, the bank country and the types of credit or debit card they issue.
- Get the account balance.

Details

api_php

The Nodejs Package for BINTable.com API

Installation

Please run > composer require bintable/api_php

Usage

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>


  Classes of Samy Massoud  >  PHP BIN Lookup API  >  Download Download .zip .tar.gz  >  Support forum Support forum  >  Blog Blog  >  RSS 1.0 feed RSS 2.0 feed Latest changes  

 

Name: PHP BIN Lookup API
Base name: api_php
Description: Lookup bank issuer number data using BinTable API
Version: -
PHP version: 5
License: GNU General Public License (GPL)
 
  Groups   Applications   Files Files  

  Groups  
Group folder image PHP 5 Classes using PHP 5 specific features View top rated classes
Group folder image Web services Web data clipping, SOAP or XML-RPC clients and servers View top rated classes
Group folder image Finances Money, exchanging, taxes and stocks View top rated classes


  Applications that use this package  
No pages of applications that use this class were specified.

Add link image If you know an application of this package, send a message to the author to add a link here.

  Files folder image Files  
File Role Description
Files folder imagesrc (1 directory)
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file readme.md Doc. Documentation

  Files folder image Files  /  src  
File Role Description
Files folder imageBintable (1 file)

  Files folder image Files  /  src  /  Bintable  
File Role Description
  Accessible without login Plain text file BintableApi.php Class Class source

Download Download all files: api_php.tar.gz api_php.zip
NOTICE: if you are using a download manager program like 'GetRight', please Login before trying to download this archive.