Latest Fungible Token Balances
curl --request POST \
--url https://api.allium.so/api/v1/developer/wallet/balances \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
[
{
"chain": "<string>",
"address": "<string>"
}
]
'import requests
url = "https://api.allium.so/api/v1/developer/wallet/balances"
payload = [
{
"chain": "<string>",
"address": "<string>"
}
]
headers = {
"X-API-KEY": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-KEY': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify([{chain: '<string>', address: '<string>'}])
};
fetch('https://api.allium.so/api/v1/developer/wallet/balances', 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.allium.so/api/v1/developer/wallet/balances",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
[
'chain' => '<string>',
'address' => '<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.allium.so/api/v1/developer/wallet/balances"
payload := strings.NewReader("[\n {\n \"chain\": \"<string>\",\n \"address\": \"<string>\"\n }\n]")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-KEY", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.allium.so/api/v1/developer/wallet/balances")
.header("X-API-KEY", "<api-key>")
.header("Content-Type", "application/json")
.body("[\n {\n \"chain\": \"<string>\",\n \"address\": \"<string>\"\n }\n]")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.allium.so/api/v1/developer/wallet/balances")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-KEY"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "[\n {\n \"chain\": \"<string>\",\n \"address\": \"<string>\"\n }\n]"
response = http.request(request)
puts response.read_body{
"items": [
{
"address": "0xab16781a13fe343a275f4bb5c883a64ceda52917",
"block_hash": "0x1d8a87d3da939280fe80fff6b90d19ca629726a1e53849766cb82f57d3fdb836",
"block_number": 23145508,
"block_timestamp": "2025-08-15T09:22:23Z",
"chain": "ethereum",
"raw_balance": 1300000000000000000,
"raw_balance_str": "1300000000000000000",
"token": {
"address": "0x0e7667a943b871835f7399e7a5adb14f70717c7e",
"chain": "ethereum",
"decimals": 18,
"info": {
"name": "ETH",
"symbol": "ETH"
},
"object": "token",
"type": "evm_erc20"
}
}
],
"cursor": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Wallets
Fetch latest fungible token balances
Get the latest balances for a list of wallets.
POST
/
api
/
v1
/
developer
/
wallet
/
balances
Latest Fungible Token Balances
curl --request POST \
--url https://api.allium.so/api/v1/developer/wallet/balances \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
[
{
"chain": "<string>",
"address": "<string>"
}
]
'import requests
url = "https://api.allium.so/api/v1/developer/wallet/balances"
payload = [
{
"chain": "<string>",
"address": "<string>"
}
]
headers = {
"X-API-KEY": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-KEY': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify([{chain: '<string>', address: '<string>'}])
};
fetch('https://api.allium.so/api/v1/developer/wallet/balances', 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.allium.so/api/v1/developer/wallet/balances",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
[
'chain' => '<string>',
'address' => '<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.allium.so/api/v1/developer/wallet/balances"
payload := strings.NewReader("[\n {\n \"chain\": \"<string>\",\n \"address\": \"<string>\"\n }\n]")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-KEY", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.allium.so/api/v1/developer/wallet/balances")
.header("X-API-KEY", "<api-key>")
.header("Content-Type", "application/json")
.body("[\n {\n \"chain\": \"<string>\",\n \"address\": \"<string>\"\n }\n]")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.allium.so/api/v1/developer/wallet/balances")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-KEY"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "[\n {\n \"chain\": \"<string>\",\n \"address\": \"<string>\"\n }\n]"
response = http.request(request)
puts response.read_body{
"items": [
{
"address": "0xab16781a13fe343a275f4bb5c883a64ceda52917",
"block_hash": "0x1d8a87d3da939280fe80fff6b90d19ca629726a1e53849766cb82f57d3fdb836",
"block_number": 23145508,
"block_timestamp": "2025-08-15T09:22:23Z",
"chain": "ethereum",
"raw_balance": 1300000000000000000,
"raw_balance_str": "1300000000000000000",
"token": {
"address": "0x0e7667a943b871835f7399e7a5adb14f70717c7e",
"chain": "ethereum",
"decimals": 18,
"info": {
"name": "ETH",
"symbol": "ETH"
},
"object": "token",
"type": "evm_erc20"
}
}
],
"cursor": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Supported Chains
Authorizations
Query Parameters
Body
application/json
Response
Successful Response
items
(EVMWalletBalances · object | SolanaBalances · object | BitcoinBalances · object | NearWalletBalances · object | SuiWalletLatestBalances · object)[]
required
Token balance entries
- EVMWalletBalances
- SolanaBalances
- BitcoinBalances
- NearWalletBalances
- SuiWalletLatestBalances
Show child attributes
Show child attributes
Example:
{
"address": "0xab16781a13fe343a275f4bb5c883a64ceda52917",
"block_hash": "0x1d8a87d3da939280fe80fff6b90d19ca629726a1e53849766cb82f57d3fdb836",
"block_number": 23145508,
"block_timestamp": "2025-08-15T09:22:23Z",
"chain": "ethereum",
"raw_balance": 1300000000000000000,
"raw_balance_str": "1300000000000000000",
"token": {
"address": "0x0e7667a943b871835f7399e7a5adb14f70717c7e",
"chain": "ethereum",
"decimals": 18,
"info": { "name": "ETH", "symbol": "ETH" },
"object": "token",
"type": "evm_erc20"
}
}
Pagination cursor for next page
Was this page helpful?
⌘I