ID Converters

ID Converters play a pivotal role in facilitating interoperability between various identification formats.

The PAN to GSTIN API, as an example, allows businesses to seamlessly convert and validate PAN (Permanent Account Number) information into GSTIN (Goods and Services Tax Identification Number) format.

This versatility simplifies data integration and enhances efficiency in cross-format identity handling.

1. PAN to GSTIN

The PAN to GSTIN API allows you to convert a PAN (Permanent Account Number) into its corresponding GSTIN (Goods and Services Tax Identification Number). This API is designed to assist in various financial and verification processes, such as bank account verification.

Usage

The API is hosted in the following endpoint:

https://in.decentro.tech/v2/kyc/converter/pan/gstin

The following request parameters are mandatory for this API.

  • reference_id: A unique identifier for the request.
  • consent: A boolean flag indicating whether the user has given consent for the PAN to GSTIN conversion.
  • purpose: The purpose of the PAN to GSTIN conversion, e.g., "for bank account verification".
  • pan: The PAN (Permanent Account Number) is to be converted into GSTIN.
{
    "reference_id": "XXXXXXXXXX",
    "consent": true,
    "purpose": "To retreive GSTIN details",
    "pan": "XXXXXXXXXX"
}
{
    "decentro_txn_id": "XXXXX",
    "status": "SUCCESS",
    "response_key": "success_gstin_retrieval",
    "message": "GSTIN Data was successfully retrieved",
    "data": [
      {
        "gstin": "<GSTIN_NUMBER>",
        "status": "<STATUS>",
        "state": "<STATE>"
      }
    ]  
}