Monthly proof-of-reserves report (CADOC 5710 prototype)
curl --request GET \
--url https://api.range.org/v2/reports/reserves/monthly \
--header 'X-API-KEY: <api-key>'import requests
url = "https://api.range.org/v2/reports/reserves/monthly"
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.range.org/v2/reports/reserves/monthly', 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.range.org/v2/reports/reserves/monthly",
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.range.org/v2/reports/reserves/monthly"
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.range.org/v2/reports/reserves/monthly")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.range.org/v2/reports/reserves/monthly")
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{
"items": [
{
"account_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"fx_source": "bcb-ptax",
"client_tax_id": "52998224725",
"client_tax_id_type": "cpf",
"network": "eth",
"address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"asset_id": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"symbol": "ETH",
"asset_name": "Ether",
"quantity": "25.000000000000000000",
"usd_value": "61250.00",
"price_source": "coingecko",
"price_updated_at": "2026-08-24T02:58:00.000Z",
"brl_value": "315376.25",
"fx_rate": "5.149",
"fx_updated_at": "2026-08-25T16:04:44.000Z",
"custodian_code": "Z1234567",
"custodian_country": "BR",
"snapshot_at": "2026-08-24T02:59:00.000Z",
"address_type": "CUSTODIA_PROPRIA_SEGREGADO",
"wallet_type": "FRIA"
}
]
}Reports
Monthly proof-of-reserves report (CADOC 5710 prototype)
Address × asset reserve rows as of 23:59 America/Sao_Paulo on the last calendar day of month, for every regulatory-enabled account in the caller workspace. Same row shape as the daily custody report plus address_type and wallet_type.
GET
/
v2
/
reports
/
reserves
/
monthly
Monthly proof-of-reserves report (CADOC 5710 prototype)
curl --request GET \
--url https://api.range.org/v2/reports/reserves/monthly \
--header 'X-API-KEY: <api-key>'import requests
url = "https://api.range.org/v2/reports/reserves/monthly"
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.range.org/v2/reports/reserves/monthly', 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.range.org/v2/reports/reserves/monthly",
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.range.org/v2/reports/reserves/monthly"
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.range.org/v2/reports/reserves/monthly")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.range.org/v2/reports/reserves/monthly")
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{
"items": [
{
"account_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"fx_source": "bcb-ptax",
"client_tax_id": "52998224725",
"client_tax_id_type": "cpf",
"network": "eth",
"address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"asset_id": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"symbol": "ETH",
"asset_name": "Ether",
"quantity": "25.000000000000000000",
"usd_value": "61250.00",
"price_source": "coingecko",
"price_updated_at": "2026-08-24T02:58:00.000Z",
"brl_value": "315376.25",
"fx_rate": "5.149",
"fx_updated_at": "2026-08-25T16:04:44.000Z",
"custodian_code": "Z1234567",
"custodian_country": "BR",
"snapshot_at": "2026-08-24T02:59:00.000Z",
"address_type": "CUSTODIA_PROPRIA_SEGREGADO",
"wallet_type": "FRIA"
}
]
}Authorizations
AuthorizationAuthorization
Authorization method required to allow user to access the api endpoints.
Query Parameters
Base month. Rows reflect the newest snapshot per account at or before 23:59 Brasília on the last calendar day of this month.
Example:
"2026-08"
Response
200 - application/json
Show child attributes
Show child attributes
Last modified on September 3, 2026
Was this page helpful?