Bin Service API


A merchant can perform following Bin Service operations using our REST API.

   Merchant Can Get BIN Details Of Particular Card.

How to Get BIN Details?

BIN Service request has to be sent to our REST endpoint i.e. binServices/api/v1/bindetails using POST method.

In our API Specifications you can find a full list of parameters that can be sent in the initial request.


Sample Request


Sample Response


Hashing Rule

is supporting MD5 Cryptographic Hash for the authenticity of request send to the server.


Below is the description of fields use for generating checksum.

  • userid <User ID as shared by >
  • secureKey <Secure Key that can be generated through 's dashboard>
  • random <Any random number>

How to generate Checksum ?

Checksum has to be calculated with following combination and need to be send along with the authentication parameters in each server-to-server request:
<userid>|<secureKey>|<random>


Sample Code