Searching for people
To search for people, use the search endpoint with the type parameter set to person:
GET api.lassox.com/data/cvr/search?query=Jeppe&type=person
{
"people": {
"continuationToken": "MnwzfExBU1NPfGFjdGl2ZXxGYWxzZQ==",
"hasNextPage": true,
"totalPages": 1375,
"results": [{
"companies": [{
"lassoId": "CVR-1-77777777",
"name": "Butikken IVS"
}
],
"totalCompanyCount": 1,
"relationsOmitted": false,
"lassoId": "CVR-3-2267399262",
"name": "Peter Lasso",
"entityType": "Person",
"address1": "Gågaden 23",
"postalCode": 2800,
"city": "Kongens Lyngby",
"country": "Danmark",
"score": 11.58017
}, {
"companies": [{
"lassoId": "CVR-1-11111111",
"name": "Firmaet ApS"
}, {
"lassoId": "CVR-1-22222222",
"name": "Best Company IVS"
}
],
"totalCompanyCount": 2,
"relationsOmitted": false,
"lassoId": "CVR-3-999999999",
"name": "Lasse Simonsen",
"entityType": "Person",
"address1": "Magigade 33",
"postalCode": 8831,
"city": "Tømmerup",
"country": "Danmark",
"score": 10.815821
}, {
"companies": [{
"lassoId": "CVR-1-12121212",
"name": "THE SHOP APS"
}
],
"totalCompanyCount": 4,
"relationsOmitted": false,
"lassoId": "CVR-3-736236383",
"name": "Lasse Ramstrup",
"entityType": "Person",
"address1": "Løbegaden 50",
"postalCode": 2500,
"city": "Valby",
"country": "Danmark",
"score": 10.815821
}
],
"page": 1,
"pageSize": 3,
"resultsFound": 4124,
"resultsReturned": 3
}
}
This is the same endpoint used to search for companies — only the type
parameter differs (company, person, or all). The response includes a score indicating
how well each result matches your query, and you can page through results using the
continuationToken / cToken parameters.
When searching for people, the company filter is especially useful for narrowing results to a
person related to a specific company, e.g. query=Jeppe company:Lasso X. See
Company → Search for the full list of filters and parameters.