# Crosschain Supply Consistency
You can use https://supplies.waves.exchange/ (opens new window) website to review confirmed, pending and total balance of the tokens in Waves and Ethereum blockchain to check current crosschain supply consistency.
You can also use GET /supplies/{currency_id} method to retrieve confirmed, pending and total balance in in Waves and Ethereum blockchain. Specify WAVES
or USDN
as {currency_id}
.
Use the following URL for API requests:
https://supplies.waves.exchange/
Successful response:
Code : 200 OK
Response format (GET /supplies/{currency_id}):
{
type: "supply",
currency_id: string,
supplies: [
{
platform_id: "WAVES",
confirmed: number, // float64 // confirmed token balance in Waves Blockchain
pending: number, // float64 // pending token balance in Waves Blockchain
total: number, // float64 // total token balance in Waves Blockchain
},
{
platform_id: "ETH",
confirmed: number, // float64 // confirmed token balance in Ethereum Blockchain
pending: number, // float64 // pending token balance in Ethereum Blockchain
total: number, // float64 // total token balance in Ethereum Blockchain
},
]
}
Response example (GET /supplies/USDN):
{
"type": "supply",
"currency_id": "USDN",
"supplies": [
{
"platform_id": "WAVES",
"confirmed": "73512095.639366",
"pending": "2286613.984439",
"total": "75798709.623805"
},
{
"platform_id": "ETH",
"confirmed": "73512095.639366",
"pending": "2286613.984439",
"total": "75798709.623805"
}
]
}