Skip to main content
GET
/
v3
/
exchanges
/
{id}
/
proof-of-reserves
Exchange proof of reserves
curl --request GET \
  --url https://api.cryptorank.io/v3/exchanges/{id}/proof-of-reserves \
  --header 'X-Api-Key: <api-key>'
{
  "reserves": "12500000000",
  "cleanReserves": "11200000000",
  "stablecoinsPercent": 42.5,
  "sourceAudit": "https://www.binance.com/en/proof-of-reserves"
}

Documentation Index

Fetch the complete documentation index at: https://docs.cryptorank.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Api-Key
string
header
required

Path Parameters

id
number
required

Response

200 - application/json
reserves
string
required

Publicly reported reserves across all supported blockchains, in USD.

Example:

"12500000000"

cleanReserves
object
required

Reserves excluding assets issued by the exchange itself. Null when reserves is 0.

Example:

"11200000000"

stablecoinsPercent
object
required

Share of stablecoin holdings within total reserves, as a percent. Null when reserves is 0.

Example:

42.5

sourceAudit
object
required

Link to the exchange page with reserve wallets / attestation report.

Example:

"https://www.binance.com/en/proof-of-reserves"