Transfer-pricing report (JSON) for the given quarter
curl --request GET \
--url https://api.example.com/v1/reports/transfer-pricing \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.example.com/v1/reports/transfer-pricing"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.example.com/v1/reports/transfer-pricing', 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.example.com/v1/reports/transfer-pricing",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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.example.com/v1/reports/transfer-pricing"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
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.example.com/v1/reports/transfer-pricing")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/reports/transfer-pricing")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"period": "2026-Q1",
"generatedAt": "2026-06-30T12:00:00.000Z",
"rowCount": 1,
"signatureAlgorithm": "HMAC-SHA256",
"signature": "a3f1c9e2b7d04f6a8c1e3b5d7f9a0c2e4f6a8c1e3b5d7f9a0c2e4f6a8c1e3b5d",
"rows": [
{
"invoiceId": "ckxinv042",
"publicId": "ckpub042",
"orgId": "ckorg001",
"buyerId": "ckbuy001",
"buyerCountry": "US",
"currency": "USD",
"amount": "12500.00",
"brlSettledAmount": "62875.00",
"fxRateAtSettlement": "5.0300",
"ptaxClose": "5.0250",
"spreadBps": 10,
"fxQuoteLockedAt": "2026-03-15T14:02:00.000Z",
"settledAt": "2026-03-15T14:05:00.000Z",
"txHash": "0x5fbe9c1e0b2d4f6a8c1e3b5d7f9a0c2e4f6a8c1e3b5d7f9a0c2e4f6a8c1ea91c",
"pixEndToEndId": "E0000000020260315140500abcdef01",
"rowHash": "b7d04f6a8c1e3b5d7f9a0c2e4f6a8c1e3b5d7f9a0c2e4f6a8c1e3b5d7f9a0c2e"
}
]
}{
"statusCode": 400,
"error": "InvalidPeriod",
"message": "period must match YYYY-QN (e.g. 2026-Q1)."
}Reports
Transfer-pricing report (JSON) for the given quarter
Returns one row per cross-border settlement in the period — the Caratuva FX rate, the BCB Ptax close rate, the spread in bps, and a per-row SHA-256 hash — plus a footer HMAC-SHA256 manifest signature over every row hash for audit verification.
GET
/
v1
/
reports
/
transfer-pricing
Transfer-pricing report (JSON) for the given quarter
curl --request GET \
--url https://api.example.com/v1/reports/transfer-pricing \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.example.com/v1/reports/transfer-pricing"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.example.com/v1/reports/transfer-pricing', 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.example.com/v1/reports/transfer-pricing",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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.example.com/v1/reports/transfer-pricing"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
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.example.com/v1/reports/transfer-pricing")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/reports/transfer-pricing")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"period": "2026-Q1",
"generatedAt": "2026-06-30T12:00:00.000Z",
"rowCount": 1,
"signatureAlgorithm": "HMAC-SHA256",
"signature": "a3f1c9e2b7d04f6a8c1e3b5d7f9a0c2e4f6a8c1e3b5d7f9a0c2e4f6a8c1e3b5d",
"rows": [
{
"invoiceId": "ckxinv042",
"publicId": "ckpub042",
"orgId": "ckorg001",
"buyerId": "ckbuy001",
"buyerCountry": "US",
"currency": "USD",
"amount": "12500.00",
"brlSettledAmount": "62875.00",
"fxRateAtSettlement": "5.0300",
"ptaxClose": "5.0250",
"spreadBps": 10,
"fxQuoteLockedAt": "2026-03-15T14:02:00.000Z",
"settledAt": "2026-03-15T14:05:00.000Z",
"txHash": "0x5fbe9c1e0b2d4f6a8c1e3b5d7f9a0c2e4f6a8c1e3b5d7f9a0c2e4f6a8c1ea91c",
"pixEndToEndId": "E0000000020260315140500abcdef01",
"rowHash": "b7d04f6a8c1e3b5d7f9a0c2e4f6a8c1e3b5d7f9a0c2e4f6a8c1e3b5d7f9a0c2e"
}
]
}{
"statusCode": 400,
"error": "InvalidPeriod",
"message": "period must match YYYY-QN (e.g. 2026-Q1)."
}Authorizations
apiKeybearer
Query Parameters
Quarter key in YYYY-QN form, e.g. 2026-Q1.
Example:
"2026-Q1"
Response
Signed transfer-pricing report for the period
⌘I