This API provides services to access records from DNB and calculate their Commercial Ultimates.
DNB API (1)
Overview
URL
Michał Dunat
Languages
Servers
Mock server
https://idp.cdq.com/_mock/apis/dnb-api/api-v1/
Production SOAP
https://api.corporate-data-league.ch/dnb/soap/v1/
Production
https://api.corporate-data-league.ch/dnb/
Bodyapplication/jsonrequired
cmd
Comprehensive designation of the Thoroughfare including the thoroughfare type such as Street, or Rue.
Example: "Lukasstraße 4"
Source identifier of dnb source which credentials should be used in lookup.
| Enum Value | Description |
|---|---|
| DNB.MASTER.DATA.BASIC | Use credentials for DNB Master Data Basic. |
| DNB.MASTER.DATA.EXTENDED | Use credentials for DNB Master Data Extended. |
| DNB.MASTER.DATA.MGMT | Use credentials for DNB Master Data Management. |
| DNB.MASTER.DATA.LNKG | Use credentials for DNB Master Data Linkage. |
| DNB.LINKAGE.LNKELI | Use credentials for DNB Linkage LNKELI. |
| DNB | Use credentials for CMPLEK. |
Example: "DNB.MASTER.DATA.EXTENDED"
- Mock server
https://idp.cdq.com/_mock/apis/dnb-api/api-v1/dnb/lookup
- Production SOAP
https://api.corporate-data-league.ch/dnb/soap/v1/dnb/lookup
- Production
https://api.corporate-data-league.ch/dnb/dnb/lookup
curl -i -X POST \
https://idp.cdq.com/_mock/apis/dnb-api/api-v1/dnb/lookup \
-H 'Content-Type: application/json' \
-d '{
"duns": "123456789",
"identifierRequests": [
{
"type": "DUNS",
"value": "1234",
"issuingBodyTechnicalKey": "Amtsgericht Aachen",
"issuingBodyName": "Amtsgericht Aachen"
}
],
"companyNames": [
"C.M.O.T Dibbler."
],
"user": "john",
"country": "Switzerland",
"postalCode": "9000",
"locality": "Sankt Gallen",
"thoroughfare": "Lukasstraße 4",
"registrationNumber": "123456789",
"sourceIdentifier": "DNB.MASTER.DATA.EXTENDED"
}'Response
application/json
{ "responses": [ { … } ] }