Get regulatory report
curl --request GET \
--url https://api.qa.nlbs.ai/api/reports/{report_uuid}import requests
url = "https://api.qa.nlbs.ai/api/reports/{report_uuid}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.qa.nlbs.ai/api/reports/{report_uuid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.qa.nlbs.ai/api/reports/{report_uuid}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.qa.nlbs.ai/api/reports/{report_uuid}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.qa.nlbs.ai/api/reports/{report_uuid}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qa.nlbs.ai/api/reports/{report_uuid}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"analysis_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"result": {
"audit_trail": "<string>",
"consolidated_risk_signals": "<string>",
"counterparty_identification": "<string>",
"ownership_and_ubo": "<string>",
"source_analysis_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"versions": {
"regulatory_catalog_version": "<string>",
"report_workflow_version": "<string>",
"model": "<string>",
"narrative_prompt_version": "<string>",
"source_analysis_workflow_version": "<string>"
},
"coaf_communication_draft": "<string>",
"coaf_xml": {
"available": true,
"format": "<string>",
"byte_size": 1,
"content_type": "application/xml",
"filename": "<string>",
"limitations": [
{
"code": "<string>",
"message": "<string>",
"details": {},
"entity_id": 1
}
],
"storage_bucket": "<string>",
"storage_key": "<string>",
"storage_uri": "<string>"
},
"enquadramento_suggestion": "<string>",
"legal_basis": "<string>",
"limitations": [
{
"code": "<string>",
"message": "<string>",
"details": {},
"entity_id": 1
}
],
"pdf": {
"available": true,
"byte_size": 1,
"content_type": "application/pdf",
"filename": "<string>",
"limitations": [
{
"code": "<string>",
"message": "<string>",
"details": {},
"entity_id": 1
}
],
"storage_bucket": "<string>",
"storage_key": "<string>",
"storage_uri": "<string>"
}
},
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}reports
Get regulatory report
Return the persisted regulatory report and its complete result.
GET
/
reports
/
{report_uuid}
Get regulatory report
curl --request GET \
--url https://api.qa.nlbs.ai/api/reports/{report_uuid}import requests
url = "https://api.qa.nlbs.ai/api/reports/{report_uuid}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.qa.nlbs.ai/api/reports/{report_uuid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.qa.nlbs.ai/api/reports/{report_uuid}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.qa.nlbs.ai/api/reports/{report_uuid}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.qa.nlbs.ai/api/reports/{report_uuid}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qa.nlbs.ai/api/reports/{report_uuid}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"analysis_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"result": {
"audit_trail": "<string>",
"consolidated_risk_signals": "<string>",
"counterparty_identification": "<string>",
"ownership_and_ubo": "<string>",
"source_analysis_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"versions": {
"regulatory_catalog_version": "<string>",
"report_workflow_version": "<string>",
"model": "<string>",
"narrative_prompt_version": "<string>",
"source_analysis_workflow_version": "<string>"
},
"coaf_communication_draft": "<string>",
"coaf_xml": {
"available": true,
"format": "<string>",
"byte_size": 1,
"content_type": "application/xml",
"filename": "<string>",
"limitations": [
{
"code": "<string>",
"message": "<string>",
"details": {},
"entity_id": 1
}
],
"storage_bucket": "<string>",
"storage_key": "<string>",
"storage_uri": "<string>"
},
"enquadramento_suggestion": "<string>",
"legal_basis": "<string>",
"limitations": [
{
"code": "<string>",
"message": "<string>",
"details": {},
"entity_id": 1
}
],
"pdf": {
"available": true,
"byte_size": 1,
"content_type": "application/pdf",
"filename": "<string>",
"limitations": [
{
"code": "<string>",
"message": "<string>",
"details": {},
"entity_id": 1
}
],
"storage_bucket": "<string>",
"storage_key": "<string>",
"storage_uri": "<string>"
}
},
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}Path Parameters
Report execution UUID.
Response
Successful Response
Complete regulatory report returned by POST and GET /reports/{uuid}.
A synchronously-returned report is always COMPLETED; failures do not persist, so the
queue-lifecycle fields (status/error/timestamps) are dropped. result carries the XML/PDF
storage references (bucket/key/uri) — artifacts live in MinIO, not inline in the response.
⌘I
