This endpoint provides tools for matching bank information in France.
Local Solutions (1.0.1)
The Local Solutions API provides a suite of specialized endpoints designed to address region-specific business needs across multiple countries. It enables users to access a variety of local data services, such as land registry information, bank account verification, consumer and anti-money laundering checks, and company searches tailored to local requirements. The API supports operations in several regions, including Great Britain, France, Germany, the Netherlands, and the United States, offering targeted solutions for each market.
With secure authentication and a modular structure, Local Solutions allows businesses to integrate local compliance, verification, and data enrichment processes into their workflows efficiently.
The list of supported regions is always expanding and will not be limited to those currently available.
https://connect.sandbox.creditsafe.com/v1/
https://connect.creditsafe.com/v1/
Authentication
This endpoint generates a Bearer JWT (Authentication Token), which is essential for accessing all other endpoints within the API.
To authenticate your requests, you MUST include this token in the Authorization header as proof of authenticity.
Please note that each token remains valid for 1 hour from the time of issuance and multiple tokens may exist concurrently. It is imperative to obtain and include a valid token in the Authorization header for every subsequent request made to the API.
Authenticate Help - Access Denied..
Verify
Verify is an exclusive add-on to Creditsafe's company credit reports, designed to assist businesses in making smarter, quicker, and more informed credit decisions. For new or small companies that lack a detailed financial footprint, Verify offers unparalleled insights by screening company directors and the individuals behind businesses for their personal financial stability and identity.
Using Verify, you can confidently assess a company's leadership, using trusted public datasets that highlight potential financial concerns, such as CCJs or Insolvencies and confirm that they reside at an address on the Electoral roll.
Reason for performing the search.
Full address line. You can provide either addressLine OR the component fields (buildingNo, buildingName, subBuilding, street, town, county).
- Sandbox server
https://connect.sandbox.creditsafe.com/v1/localSolutions/GB/verify/individual/directReport
- Production server
https://connect.creditsafe.com/v1/localSolutions/GB/verify/individual/directReport
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://connect.sandbox.creditsafe.com/v1/localSolutions/GB/verify/individual/directReport \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"firstName": "string",
"middleName": "string",
"lastName": "string",
"dateOfBirth": "YYYY-MM-DD",
"reasonForSearch": "AM",
"title": "string",
"addresses": {
"currentAddress": {
"postCode": "string",
"addressLine": "string",
"buildingNo": "string",
"buildingName": "string",
"subBuilding": "string",
"street": "string",
"town": "string",
"county": "string"
},
"previousAddresses": [
{
"position": 1,
"postCode": "string",
"addressLine": "string",
"buildingNo": "string",
"buildingName": "string",
"subBuilding": "string",
"street": "string",
"town": "string",
"county": "string"
}
]
}
}'Indicates if the verification matches (true if ANY address matched). Aggregated from all address results using OR logic.
Top-level aggregated flags. Each flag is true if ANY address has the flag set to true (aggregated using OR logic). Always present in response.
Company directorships for the individual. Always present in response (may be empty array). Only populated when PNR is matched and customer has Full (3136) backend flag. Ordered by appointment status: Current, then Resigned, then Dissolved.
Address verification results matching the request structure. Always present in response.
{ "verifyMatch": true, "flags": { "ccjMatch": true, "electoralRegisterMatch": true, "deceasedRegisterMatch": true, "insolvencyMatch": true }, "directorships": [ { … } ], "addresses": { "currentAddress": { … }, "previousAddresses": { … } }, "requestDetails": { "title": "string", "firstName": "string", "middleName": "string", "lastName": "string", "dateOfBirth": "string", "reasonForSearch": "string", "buildingNo": "string", "buildingName": "string", "subBuilding": "string", "street": "string", "town": "string", "county": "string", "postcode": "string", "addressLine": "string", "addresses": { … } } }
Specifies the number of items to be displayed per page. Allowed values are between 1 and 100.
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/people
- Production server
https://connect.creditsafe.com/v1/people
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://connect.sandbox.creditsafe.com/v1/people?page=1&pageSize=0&countries=GB%2CFR&peopleId=string&firstName=string&lastName=string&localDirectorNumber=string&dateOfBirth=string&callRef=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "messages": [ { … } ], "correlationId": "string", "directors": [ { … } ], "totalSize": 0 }
- Sandbox server
https://connect.sandbox.creditsafe.com/v1/localSolutions/GB/verify/individual/{id}/summary
- Production server
https://connect.creditsafe.com/v1/localSolutions/GB/verify/individual/{id}/summary
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://connect.sandbox.creditsafe.com/v1/localSolutions/GB/verify/individual/{id}/summary?freeText=string&reasonForSearch=AM' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "verifyMatch": true, "flags": { "ccjMatch": true, "electoralRegisterMatch": true, "deceasedRegisterMatch": true, "insolvencyMatch": true } }