Company Information Check
GetThis CompanyAPI Detailsallows byyou Companyto IDretrieve the verification history of a specific company based on its company ID. You can check how many times the company has been verified using the provided company ID.
Endpoint
GET https://stg-api.frontpayment.no/api/v1/connect/company/details/{company_id}
Description
Retrieves detailed information about a specific company using its Company ID.
Replace {company_id}
with the numeric company identifier.
Authorization
To access this endpoint, include a Bearer Token
in the Authorization
header of your request. You can obtain this token from Frontpayment.
Response
A successful request returns an array containing detailed information about the specified company.
{
"status_code": 200,
"status_message": "OK",
"message": "companyRecordRetriveSuccessfully",
"is_data": true,
"data": [
{
"companyCheckUuid": "COMCHK1754819969",
"companyId": "920058272",
"companyType": "BRL",
"companyName": "FLØTNINGEN PARK II BORETTSLAG",
"score": "856",
"riskLevel": "Low",
"scoreMessage": "Good Credit Rating",
"defaultProbability": "0.44",
"personalNumber": "28038712383",
"contactPersonName": "Georg Bøe",
"contactPersonEmail": "[email protected]",
"createdAt": 1754819969
}
]
}