Standard Company Check

Performs a standard business check and returns core company registration information. This endpoint retrieves basic company details such as registration data, legal type, and current status from official sources.

Request

https://openapi.advance.ai/v1/business/standard_checks
POST (application/json)

Request Header Parameters

ParameterDescription
X-ACCESS-TOKENstring Please use Token Authentication API to get your access token.

Request Parameters

Parameter)

Required

Description

companyName

True

string The name of the company to be checked.

country

True

string The country of the company, The country of the company. Accepts country full name, ISO-3166-1 alpha-2 code, or ISO-3166-1 alpha-3 code.
Recommendation: Please use ISO-3166-1 alpha-3 codes where possible.
Example formats: "Singapore", "SG", "SGP"

registrationNumber

True

string The registration number of the company.

Request Examples

curl -X POST "https://openapi.advance.ai/v1/business/standard_checks" \
-H "X-ACCESS-TOKEN: {Your Access Token}" \
-H "Content-Type: application/json" \
-d '{
  "companyName": "Official company",
  "country": SGP",
  "registrationNumber": "184671112D"
}'

Success Response

Response Description

FieldDescription
idstring The unique id of the company check result.
statusenum Company verification check status.
verifyResultenum Company verification result.
createdAtstring The creation time in ISO-8601 format.
registrationInfoobject Company registration basic information.

Response.data.registrationInfo

Company registration information.

FieldDescription
companyNamestring Registered company name.
companyTypeenum Legal type of the company.
companyStatusenum Current registration status.
registrationDatestring Company registration date in yyyy-MM-dd format.
registrationNumberstring Official registration number.
registrationCountrystring Country of registration.
registeredCompanyAddressstring Registered company address.

Response.data.status

KYB Company Check Status

ValueDescription
IN_PROGRESSIn Progress
COMPLETEDCompleted
ERRORError

Response.data.verifyResult

Company verification result

ValueDescription
EXISTCompany exists in the official registry.
NO_EXISTCompany not found in the official registry

Response.data.registrationInfo.companyType

Company legal entity type

ValueDescription
PRIVATE_LIMITED_LIABILITY_COMPANYPrivate Limited Liability Company.
PUBLIC_LIMITED_LIABILITY_COMPANYPublic Limited Liability Company.
LIMITED_LIABILITY_COMPANYLimited Liability Company.
FOUNDATIONFoundation.
ASSOCIATIONAssociation.
COOPERATIVECooperative.
LIMITED_PARTNERSHIPLimited Partnership.
SOLE_PROPRIETORSHIPSole Proprietorship.
FEDERATION_OF_FIRMSFederation of Firms.
CIVIL_PARTNERSHIPCivil Partnership.
GENERAL_PARTNERSHIPGeneral Partnership.
PUBLIC_UTILITY_COMPANYPublic Utility Company.
STATE_OWNED_COMPANYState-owned Company.
OTHERSOther or unclassified legal entity types

Response.data.infos.status

Registration status.

ValueDescription
ACTIVEThe role is currently active.
INACTIVEThe role is no longer active.
OTHEROther or unknown status.

Response Examples

{
  "id": "KYBC-2014648268034936833",
  "status": "COMPLETED",
  "verifyResult": "EXIST",
  "createdAt": "2024-02-10T08:15:30Z",
  "registrationInfo": {
    "companyName": "ADVANCE TECH SDN BHD",
    "companyType": "ASSOCIATION",
    "companyStatus": "ACTIVE",
    "registrationDate": "2019-06-18",
    "registrationNumber": "201901023456",
    "registrationCountry": "MYS",
    "registeredCompanyAddress": "Level 10, Menara ABC, Kuala Lumpur"
  }
}

Error Response

Response Description

The standard error response object.

ParameterDescription
errorobject The error details.

ResponseError.error

FieldDescription
typestring Error code or type.
messagestring Human-readable error message.

ResponseError.error.type

Value

Description

HTTP Status Code

parameter_error

Parameter validation failed
(e.g., missing or invalid parameter).

400 Bad Request

iam_failed

Authentication or authorization failed.

401 Unauthorized

error

Internal server error or unknown error.

500 Internal Server Error

not_found

Requested resource not found.

404 Not Found

service_busy

The service is busy or rate limited.

429 Too Many Requests

Response Examples

{
  "error": {
    "type": "parameter_error",
    "message": "ID cannot be empty"
  }
}