Skip to content

Information and relations

This endpoint returns data from CVR about a specific person. As with companies, most fields include a complete history of values, and you can retrieve either the current values or the entire history.

The endpoint is api.lassox.com/{lassoid}, where {lassoid} is a Lasso Id for a CVR person. To retrieve the history, append /history, which will include all data wrapped in an object containing to and from values.

The following is an example of how to get data from CVR about a specific person. Don't forget to add your API key.

GET api.lassox.com/CVR-3-4000000001
{
    "lassoId": "CVR-3-4000000001",
    "unitNumber": 4000000001,
    "name": "John Doe",
    "type": "PERSON",
    "address": {
        "secret": false,
        "secretExempted": false,
        "updateCeased": false,
        "value": {
            "address1": "Valmuevej 40 st. th.",
            "address2": "1709 København V",
            "streetName": "Valmuevej",
            "streetCode": 6544,
            "houseNumberFrom": 40,
            "houseNumberTo": null,
            "houseLetterFrom": null,
            "houseLetterTo": null,
            "floor": "st",
            "sideDoor": "th",
            "postalCode": 1709,
            "postalDistrict": "København V",
            "cityName": null,
            "municipality": {
                "name": "KØBENHAVN",
                "code": 101
            },
            "coName": null,
            "postalBox": null,
            "freeText": null,
            "countryCode": "DK"
        }
    },
    "phone": null,
    "email": null,
    "fax": null,
    "stakeholder": [],
    "management": [{
            "lassoId": "CVR-1-23452345",
            "cvr": 23452345,
            "name": "AKTIESELSKABET A/S",
            "status": "NORMAL",
            "form": {
                "code": 60,
                "shortDescription": "A/S",
                "longDescription": "Aktieselskab"
            },
            "lifeTime": {
                "from": "2012-05-14T00:00:00",
                "to": null
            },
            "type": "VIRKSOMHED",
            "role": {
                "mainType": "LEDELSESORGAN",
                "type": "Direktør",
                "originalType": "DIREKTION",
                "attributes": []
            }
        }, {
            "lassoId": "CVR-1-43214321",
            "cvr": 43214321,
            "name": "HOLDINGSELSKABET ApS",
            "status": "NORMAL",
            "form": {
                "code": 80,
                "shortDescription": "APS",
                "longDescription": "Anpartsselskab"
            },
            "lifeTime": {
                "from": "2014-01-05T00:00:00",
                "to": null
            },
            "type": "VIRKSOMHED",
            "role": {
                "mainType": "LEDELSESORGAN",
                "type": "Administrerende Direktør",
                "originalType": "adm. dir",
                "attributes": []
            }
        }
    ],
    "board": [],
    "founder": [
        {
            "lassoId": "CVR-1-34580820",
            "cvr": 34875577,
            "name": "VIRKSOMHEDEN A/S",
            "status": "NORMAL",
            "form":{
            "code": 60,
            "shortDescription": "A/S",
            "longDescription": "Aktieselskab"
            },
            "lifeTime":{
            "from": "2012-05-14T00:00:00",
            "to": null
            },
            "type": "VIRKSOMHED",
            "role":{
                "mainType": "STIFTERE",
                "type": "Stifter",
                "originalType": "STIFTERE",
                "attributes":[]
            },
            "from": "2012-05-14T00:00:00"
        }
    ],
    "owner": [{
            "ownership": {
                "from": 1.0,
                "to": 1.0
            },
            "voterights": {
                "from": 1.0,
                "to": 1.0
            },
            "lassoId": "CVR-1-43214321",
            "cvr": 43214321,
            "name": "HOLDINGSELSKABET ApS",
            "status": "NORMAL",
            "form": {
                "code": 80,
                "shortDescription": "APS",
                "longDescription": "Anpartsselskab"
            },
            "lifeTime": {
                "from": "2014-01-05T00:00:00",
                "to": null
            },
            "type": "VIRKSOMHED",
            "role": {
                "mainType": "REGISTER",
                "type": "EJER",
                "attributes": [{
                        "type": "EJERANDEL_MEDDELELSE_DATO",
                        "value": "2014-01-05T00:00:00"
                    }
                ]
            }
        }
    ],
    "trueOwner": [{
            "ownership": 1.0,
            "voteRights": 1.0,
            "throughRole": false,
            "lassoId": "CVR-1-43214321",
            "cvr": 43214321,
            "name": "HOLDINGSELSKABET ApS",
            "status": "NORMAL",
            "form": {
                "code": 80,
                "shortDescription": "APS",
                "longDescription": "Anpartsselskab"
            },
            "lifeTime": {
                "from": "2014-01-05T00:00:00",
                "to": null
            },
            "type": "VIRKSOMHED",
            "role": {
                "mainType": "REGISTER",
                "type": "REEL EJER",
                "attributes": []
            }
        }
    ],
    "otherRoles": [],
    "attributes": [],
    "lastUpdated": "2019-02-27T02:54:50"
}

GET api.lassox.com/CVR-3-4000000001/history
{
    "lassoId": "CVR-3-4000000001",
    "unitNumber": 4000000001,
    "name": "John Doe",
    "type": "PERSON",
    "address": {
        "secret": false,
        "secretExempted": false,
        "updateCeased": false,
        "value": {
            "address1": "Valmuevej 40 st. th.",
            "address2": "1709 København V",
            "streetName": "Valmuevej",
            "streetCode": 6544,
            "houseNumberFrom": 40,
            "houseNumberTo": null,
            "houseLetterFrom": null,
            "houseLetterTo": null,
            "floor": "st",
            "sideDoor": "th",
            "postalCode": 1709,
            "postalDistrict": "København V",
            "cityName": null,
            "municipality": {
                "name": "KØBENHAVN",
                "code": 101
            },
            "coName": null,
            "postalBox": null,
            "freeText": null,
            "countryCode": "DK"
        }
    },
    "phone": [],
    "email": [],
    "fax": [],
    "stakeholder": [{
            "value": {
                "lassoId": "CVR-1-33333333",
                "cvr": 33333333,
                "name": "Mit Firma I/S",
                "status": null,
                "form": {
                    "code": 30,
                    "shortDescription": "I/S",
                    "longDescription": "Interessentskab"
                },
                "lifeTime": {
                    "from": "2012-11-01T00:00:00",
                    "to": "2014-06-25T00:00:00"
                },
                "type": "VIRKSOMHED",
                "role": {
                    "mainType": "FULDT_ANSVARLIG_DELTAGERE",
                    "type": "Interessent",
                    "originalType": "INTERESSENTER",
                    "attributes": []
                }
            },
            "from": "2012-11-01T00:00:00",
            "to": "2014-06-25T00:00:00",
            "current": false
        }, {
            "value": {
                "lassoId": "CVR-1-34343434",
                "cvr": 34343434,
                "name": "Mindre Firma I/S",
                "status": null,
                "form": {
                    "code": 30,
                    "shortDescription": "I/S",
                    "longDescription": "Interessentskab"
                },
                "lifeTime": {
                    "from": "2013-06-01T00:00:00",
                    "to": "2013-10-26T00:00:00"
                },
                "type": "VIRKSOMHED",
                "role": {
                    "mainType": "FULDT_ANSVARLIG_DELTAGERE",
                    "type": "Interessent",
                    "originalType": "INTERESSENTER",
                    "attributes": []
                }
            },
            "from": "2013-06-01T00:00:00",
            "to": "2013-10-26T00:00:00",
            "current": false
        }
    ],
    "management": [{
            "value": {
                "lassoId": "CVR-1-23452345",
                "cvr": 23452345,
                "name": "AKTIESELSKABET A/S",
                "status": "NORMAL",
                "form": {
                    "code": 60,
                    "shortDescription": "A/S",
                    "longDescription": "Aktieselskab"
                },
                "lifeTime": {
                    "from": "2012-05-14T00:00:00",
                    "to": null
                },
                "type": "VIRKSOMHED",
                "role": {
                    "mainType": "LEDELSESORGAN",
                    "type": "Direktør",
                    "originalType": "DIREKTION",
                    "attributes": []
                }
            },
            "from": "2014-06-01T00:00:00",
            "to": null,
            "current": true
        },, {
            "value": {
                "lassoId": "CVR-1-43214321",
                "cvr": 43214321,
                "name": "HOLDINGSELSKABET ApS",
                "status": "NORMAL",
                "form": {
                    "code": 80,
                    "shortDescription": "APS",
                    "longDescription": "Anpartsselskab"
                },
                "lifeTime": {
                    "from": "2014-01-05T00:00:00",
                    "to": null
                },
                "type": "VIRKSOMHED",
                "role": {
                    "mainType": "LEDELSESORGAN",
                    "type": "Administrerende Direktør",
                    "originalType": "adm. dir",
                    "attributes": []
                }
            },
            "from": "2014-01-05T00:00:00",
            "to": null,
            "current": true
        }
    ],
    "board": [{
            "value": {
                "lassoId": "CVR-1-23452345",
                "cvr": 23452345,
                "name": "AKTIESELSKABET A/S",
                "status": "NORMAL",
                "form": {
                    "code": 60,
                    "shortDescription": "A/S",
                    "longDescription": "Aktieselskab"
                },
                "lifeTime": {
                    "from": "2012-05-14T00:00:00",
                    "to": null
                },
                "type": "VIRKSOMHED",
                "role": {
                    "mainType": "LEDELSESORGAN",
                    "type": "Bestyrelsesmedlem",
                    "originalType": "BESTYRELSE",
                    "attributes": [{
                            "type": "VALGFORM",
                            "value": "generalforsamling"
                        }
                    ]
                }
            },
            "from": "2014-12-01T00:00:00",
            "to": "2015-06-15T00:00:00",
            "current": false
        }, {
            "value": {
                "lassoId": "CVR-1-23452345",
                "cvr": 23452345,
                "name": "AKTIESELSKABET A/S",
                "status": "NORMAL",
                "form": {
                    "code": 60,
                    "shortDescription": "A/S",
                    "longDescription": "Aktieselskab"
                },
                "lifeTime": {
                    "from": "2012-05-14T00:00:00",
                    "to": null
                },
                "type": "VIRKSOMHED",
                "role": {
                    "mainType": "LEDELSESORGAN",
                    "type": "Bestyrelsesmedlem",
                    "originalType": "BESTYRELSE",
                    "attributes": [{
                            "type": "VALGFORM",
                            "value": "generalforsamling"
                        }
                    ]
                }
            },
            "from": "2012-07-02T00:00:00",
            "to": "2014-05-31T00:00:00",
            "current": false
        }
    ],
    "founder": [
        { 
            "value": {
                "lassoId": "CVR-1-34580820",
                "cvr": 34875577,
                "name": "VIRKSOMHEDEN A/S",
                "status": "NORMAL",
                "form":{
                "code": 60,
                "shortDescription": "A/S",
                "longDescription": "Aktieselskab"
                },
                "lifeTime":{
                "from": "2012-05-14T00:00:00",
                "to": null
                },
                "type": "VIRKSOMHED",
                "role":{
                    "mainType": "STIFTERE",
                    "type": "Stifter",
                    "originalType": "STIFTERE",
                    "attributes":[]
                },
                "from": "2012-05-14T00:00:00"
            },
            "from": "2012-05-14T00:00:00",
            "to": null,
            "current": true
        }
    ],
    "owner": [{
            "value": {
                "ownership": {
                    "from": 1.0,
                    "to": 1.0
                },
                "voterights": {
                    "from": 1.0,
                    "to": 1.0
                },
                "lassoId": "CVR-1-43214321",
                "cvr": 43214321,
                "name": "HOLDINGSELSKABET ApS",
                "status": "NORMAL",
                "form": {
                    "code": 80,
                    "shortDescription": "APS",
                    "longDescription": "Anpartsselskab"
                },
                "lifeTime": {
                    "from": "2014-01-05T00:00:00",
                    "to": null
                },
                "type": "VIRKSOMHED",
                "role": {
                    "mainType": "REGISTER",
                    "type": "EJER",
                    "attributes": [{
                            "type": "EJERANDEL_MEDDELELSE_DATO",
                            "value": "2014-01-05T00:00:00"
                        }
                    ]
                }
            },
            "from": "2014-01-05T00:00:00",
            "to": null,
            "current": true
        }
    ],
    "trueOwner": [{
            "value": {
                "ownership": 1.0,
                "voteRights": 1.0,
                "throughRole": false,
                "lassoId": "CVR-1-43214321",
                "cvr": 43214321,
                "name": "HOLDINGSELSKABET ApS",
                "status": "NORMAL",
                "form": {
                    "code": 80,
                    "shortDescription": "APS",
                    "longDescription": "Anpartsselskab"
                },
                "lifeTime": {
                    "from": "2014-01-05T00:00:00",
                    "to": null
                },
                "type": "VIRKSOMHED",
                "role": {
                    "mainType": "REGISTER",
                    "type": "REEL EJER",
                    "attributes": []
                }
            },
            "from": "2014-01-05T00:00:00",
            "to": null,
            "current": true
        }, {
            "value": {
                "ownership": 0.3474,
                "voteRights": 0.3474,
                "throughRole": false,
                "lassoId": "CVR-1-23452345",
                "cvr": 23452345,
                "name": "AKTIESELSKABET A/S",
                "status": "NORMAL",
                "form": {
                    "code": 60,
                    "shortDescription": "A/S",
                    "longDescription": "Aktieselskab"
                },
                "lifeTime": {
                    "from": "2012-05-14T00:00:00",
                    "to": null
                },
                "type": "VIRKSOMHED",
                "role": {
                    "mainType": "REGISTER",
                    "type": "REEL EJER",
                    "attributes": []
                }
            },
            "from": "2014-06-01T00:00:00",
            "to": "2018-04-22T00:00:00",
            "current": false
        }, {
            "value": {
                "ownership": 0.2638,
                "voteRights": 0.2638,
                "throughRole": false,
                "lassoId": "CVR-1-23452345",
                "cvr": 23452345,
                "name": "AKTIESELSKABET A/S",
                "status": "NORMAL",
                "form": {
                    "code": 60,
                    "shortDescription": "A/S",
                    "longDescription": "Aktieselskab"
                },
                "lifeTime": {
                    "from": "2012-05-14T00:00:00",
                    "to": null
                },
                "type": "VIRKSOMHED",
                "role": {
                    "mainType": "REGISTER",
                    "type": "REEL EJER",
                    "attributes": []
                }
            },
            "from": "2018-04-23T00:00:00",
            "to": "2018-12-27T00:00:00",
            "current": false
        }, {
            "value": {
                "ownership": 0.2505,
                "voteRights": 0.2505,
                "throughRole": false,
                "lassoId": "CVR-1-23452345",
                "cvr": 23452345,
                "name": "AKTIESELSKABET A/S",
                "status": "NORMAL",
                "form": {
                    "code": 60,
                    "shortDescription": "A/S",
                    "longDescription": "Aktieselskab"
                },
                "lifeTime": {
                    "from": "2012-05-14T00:00:00",
                    "to": null
                },
                "type": "VIRKSOMHED",
                "role": {
                    "mainType": "REGISTER",
                    "type": "REEL EJER",
                    "attributes": []
                }
            },
            "from": "2018-12-28T00:00:00",
            "to": "2019-07-15T00:00:00",
            "current": false
        }
    ],
    "otherRoles": [],
    "attributes": [],
    "lastUpdated": "2019-02-27T02:54:50"
}

You can also look up the companies a person is connected to. The api.lassox.com/{lassoid}/related/company endpoint, where {lassoid} is a Lasso Id for a CVR person, returns the combined information for the companies related to that person. Append /history to retrieve the history version.

GET api.lassox.com/CVR-3-4000000001/related/company
GET api.lassox.com/CVR-3-4000000001/related/company/history