Retrieve a Credit Analysis
To retrieve a specific Credit Analysis, simply make a GET request. The response will return the most up-to-date JSON of the analysis in question. If the identifier is not linked to any object, an HTTP 404 Status will be returned.
- Natural Person:
GET https://api.caas.qitech.app/credit_analysis/natural_person/12345678
- Legal Person:
GET https://api.caas.qitech.app/credit_analysis/legal_person/12345678
curl "https://api.caas.qitech.app/credit_analysis/natural_person/12345678"
-H "Authorization: EXAMPLE-OF-API-KEY"
The curl above returns the JSON that represents a Natural Person object.
curl "https://api.caas.qitech.app/credit_analysis/legal_person/12345678"
-H "Authorization: EXAMPLE-OF-API-KEY"
The curl above returns the JSON that represents Legal Person object.