Authentication endpoint to obtain access token for API requests.
- API Documentation
- Return Custom Report Parameters
Consumer And Misc (1.0.0)
Endpoints to order Consumer Reports. In order to order a Consumer Report, sufficient information to uniquely identify the Consumer (search criteria) must be provided to filter potential results down to one record. When one record has been found, the returned object will be the Consumer Report. Currently only piloting with German Consumers.
Important Note on Response Structure
The response structure shown in this documentation represents the full set of fields that may be returned by the Consumer Report service.
Actual responses depend on the data available for the requested consumer. If certain information (e.g., incomes, property details, credit score) is not available, those fields will be omitted from the response.
Always implement your integration to handle missing or partial data gracefully.
https://connect.sandbox.creditsafe.com/v1/
https://connect.creditsafe.com/v1/
This parameter allows users to assign a unique identifier to their API queries. By using a callRef, it facilitates easier tracking and logging within Connect. If you provide a callRef, the Connect team can later retrieve and identify the specific requests associated with that identifier, enabling detailed tracing of interactions.
- Sandbox server
https://connect.sandbox.creditsafe.com/v1/consumers/searchcriteria
- Production server
https://connect.creditsafe.com/v1/consumers/searchcriteria
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://connect.sandbox.creditsafe.com/v1/consumers/searchcriteria?countries=de&callRef=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'[ { "countries": [ … ], "criteriaSets": [ … ] } ]
Request
Returns the allowed values of the customData parameter.
Used in the GET Company Report and Director Report endpoints. I.e. Supplying DE as a country code will return a list of reasons for requesting a DE Credit Report (a legal requirement to supply with each Credit Report request in Germany). This will provide a list of allowedValues to enter into the mandatory Parameter customData = de_reason_code::allowedValue.
- Sandbox server
https://connect.sandbox.creditsafe.com/v1/reportcustomdata/{country}
- Production server
https://connect.creditsafe.com/v1/reportcustomdata/{country}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://connect.sandbox.creditsafe.com/v1/reportcustomdata/{country}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "customData": [ { … } ], "country": "DE" }
ISO-2 country code. Only available for DE (Germany) and NL (Netherlands)
This parameter allows users to assign a unique identifier to their API queries. By using a callRef, it facilitates easier tracking and logging within Connect. If you provide a callRef, the Connect team can later retrieve and identify the specific requests associated with that identifier, enabling detailed tracing of interactions.
- Sandbox server
https://connect.sandbox.creditsafe.com/v1/consumers
- Production server
https://connect.creditsafe.com/v1/consumers
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://connect.sandbox.creditsafe.com/v1/consumers?countries=DE&language=EN&firstName=string&lastName=string&street=string&houseNo=string&city=string&postCode=string&dateOfBirth=2019-08-24T14%3A15%3A22Z&customData=de_reason_code%3A%3AER' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "correlationId": "string", "totalSize": 0, "consumers": [ { … } ] }