CVR

Query the Danish Business Registry (CVR) to retrieve detailed company information including name, address, company type, status, and founding date using search criteria such as company name, CVR number, or address.

Search company by a name or CVR number

Returns a list of companies matching the specified criteria.

GET
/ cvr

Parameters

Name Type Description Required
query string The name or CVR number for which to get the value Required

Response

{
  "type": "object",
  "properties": {
    "cvr": {
      "type": "string",
      "description": "The CVR number for the company",
      "example": "DK12345678"
    },
    "name": {
      "type": "string",
      "description": "The name of the company",
      "example": "Novo Nordisk A/S"
    },
    "address": {
      "type": "string",
      "description": "The address of the company",
      "example": "Novo Allé 1"
    },
    "postal_code": {
      "type": "string",
      "description": "The postal code of the company",
      "example": "2880"
    },
    "city": {
      "type": "string",
      "description": "The city of the company",
      "example": "Bagsværd"
    },
    "phone": {
      "type": "string",
      "description": "The phone number of the company",
      "example": "+45 44448888"
    },
    "email": {
      "type": "string",
      "description": "The email address of the company",
      "example": "info@novonordisk.com"
    },
    "country": {
      "type": "string",
      "description": "The country of the company",
      "example": "Denmark"
    }
  }
}
curl --request GET \
  --url "https://www.apikiss.com/api/v1/cvr?query=12345678" \
  --header 'Authorization: Bearer <token>'
{
  "type": "object",
  "properties": {
    "cvr": {
      "type": "string",
      "description": "The CVR number for the company",
      "example": "DK12345678"
    },
    "name": {
      "type": "string",
      "description": "The name of the company",
      "example": "Novo Nordisk A/S"
    },
    "address": {
      "type": "string",
      "description": "The address of the company",
      "example": "Novo Allé 1"
    },
    "postal_code": {
      "type": "string",
      "description": "The postal code of the company",
      "example": "2880"
    },
    "city": {
      "type": "string",
      "description": "The city of the company",
      "example": "Bagsværd"
    },
    "phone": {
      "type": "string",
      "description": "The phone number of the company",
      "example": "+45 44448888"
    },
    "email": {
      "type": "string",
      "description": "The email address of the company",
      "example": "info@novonordisk.com"
    },
    "country": {
      "type": "string",
      "description": "The country of the company",
      "example": "Denmark"
    }
  }
}

Authorizations

Authorization
header
required

Authentication token in the format "Bearer <token>"

Path Parameters

query
string
required

The name or CVR number for which to get the value

Response

200 - application/json
cvr
string

The CVR number for the company

Example: DK12345678

name
string

The name of the company

Example: Novo Nordisk A/S

address
string

The address of the company

Example: Novo Allé 1

postal_code
string

The postal code of the company

Example: 2880

city
string

The city of the company

Example: Bagsværd

phone
string

The phone number of the company

Example: +45 44448888

email
string

The email address of the company

Example: info@novonordisk.com

country
string

The country of the company

Example: Denmark

Try it out

Don't have a key? Sign up to get one for free.

The name or CVR number for which to get the value

Response

Click "Send Request" to see the response...