Fetch CIN

Header Parameters

NameTypeDescriptionMandatory (M) , Optional (O)Provided by INSTANTPAY (Y/N)
X-Ipay-Auth-CodeStringAuth Code is "1" (Fixed)MY
X-Ipay-Client-IdStringUnique Client Id Provided by InstantpayMY
X-Ipay-Client-SecretStringUnique Client Secret Provided by InstantpayMY
X-Ipay-Endpoint-IpStringEnd customer IP AddressMY

Request Parameters

Parameter NameTypeRequirementDescription
companyNameStringMandatoryName of the company

Sample Request

curl --location 'https://api.instantpay.in/identity/company/lookup/cin' \
--header 'X-Ipay-Client-Id: YWY3OTAzYzNlM2ExZTJlOQ8l80uxEOrgU6T3Oc4znVc=' \
--header 'X-Ipay-Client-Secret: 9e08574b440f1b4b13d19654cf31aa9b5d0b1effcc80785ded93ea87c5640fa7' \
--header 'X-Ipay-Auth-Code: 1' \
--header 'X-Ipay-Endpoint-Ip: 49.249.72.66' \
--header 'Content-Type: application/json' \
--data ' {
    "companyName" : "instan"
}

POST /identity/company/lookup/cin HTTP/1.1
Host: api.instantpay.in
X-Ipay-Client-Id: YWY3OTAzYzNlM2ExZTJlOQ8l80uxEOrgU6T3Oc4znVc=
X-Ipay-Client-Secret: 9e08574b440f1b4b13d19654cf31aa9b5d0b1effcc80785ded93ea87c5640fa7
X-Ipay-Auth-Code: 1
X-Ipay-Endpoint-Ip: 49.249.72.66
Content-Type: application/json
Content-Length: 49

 {
    "companyName" : "instan"
}







Response Parameters

Parameter NameTypeDescription
statuscodeStringInstantpay Status Code
actcodeStringAction Code
statusArrayStatus message
dataStringResponse Data(if Present)
timestampStringResponse time (YYYY-MM-DD HH:II:SS)
ipay_uuidStringRequest reference number
orderidStringTransaction Id(if transaction otherwise it is null)
environmentStringLive/Sandbox
{
    "statuscode": "TXN",
    "actcode": null,
    "status": "Transaction Successful",
    "data": [
        {
            "companyID": "U64200DL2010PLC206587",
            "companyName": "INSTANTPAY INDIA LIMITED"
        },
        {
            "companyID": "U65999DL2020PTC360006",
            "companyName": "INSTANTPAY FOREX SERVICES PRIVATE LIMITED"
        }
    ],
    "timestamp": "2023-06-22 17:32:48",
    "ipay_uuid": "h0009978aa92-cbb9-4a31-aad1-a6280eb32c2b",
    "orderid": null,
    "environment": "SANDBOX",
    "internalCode": null
}




Language
Click Try It! to start a request and see the response here!