Skip to main content

Companies from registry

GET /v1/company

Retrieves a paginated list of companies from a national business registry. The response includes normalized legal identifiers, display names, physical and postal addresses, and a flag indicating whether the company already exists in your workspace. Use the metadata object to paginate through results.

Query Parameters

  • country - Parameter for country
  • search - Search term to filter results
  • limit - Maximum number of items to return
  • ~tenant - Parameter for ~tenant
  • ~offset - Parameter for ~offset

Request Example

GET /v1/company?country=NO&search=COM&limit=20

Response Example

{
"data": [
{
"number": "000000001",
"name": "Example Com DA",
"address": {
"country": "Norway",
"countrycode": "NO",
"zip": "0001",
"city": "Oslo",
"street": "Example Street 1"
},
"postal_address": {
"country": "Norway",
"countrycode": "NO",
"zip": "0002",
"city": "Oslo",
"street": "c/o Example Person, Example Street 2"
},
"alreadyExists": false
},
{
"number": "000000002",
"name": "Sample Com AS",
"address": {
"country": "Norway",
"countrycode": "NO",
"zip": "5000",
"city": "Bergen",
"street": "Sampleveien 10"
},
"postal_address": {
"country": "Norway",
"countrycode": "NO",
"zip": "5001",
"city": "Bergen",
"street": "Postboks 123"
},
"alreadyExists": true
},
{
"number": "000000003",
"name": "Demo Com ANS",
"address": {
"country": "Norway",
"countrycode": "NO",
"zip": "7010",
"city": "Trondheim",
"street": "Demogata 5"
},
"postal_address": {
"country": "Norway",
"countrycode": "NO",
"zip": "7011",
"city": "Trondheim",
"street": "Demogata 5"
},
"alreadyExists": false
}
],
"metadata": {
"total": 214,
"size": 20,
"offset": 0,
"isLast": false
}
}