Validate company from registry
GET /v1/company/validate
Retrieves canonical company details from the official registry for a given organization number. Use this endpoint to validate an account before creation or update; the response includes normalized address fields that reflect the registry's current record.
Query Parameters
country- Parameter for countrynumber- Parameter for number
Request Example
GET /v1/company/validate?country=NO&number=926279882
Response Example
{
"number": "999999999",
"name": "Example AS",
"address": {
"country": "Norway",
"countrycode": "NO",
"zip": "0001",
"city": "Oslo",
"street": "Example Street 1"
},
"postal_address": {
"country": "Norway",
"countrycode": "NO",
"zip": "0001",
"city": "Oslo",
"street": "Example Street 1"
}
}