curl --request GET \
--url https://api.range.org/v2/addresses \
--header 'X-API-KEY: <api-key>'{
"items": [
{
"id": "solana:9xQeWvG816bUx9EPjHmaT23yvVM2ZWbrrpZb9PusVFin",
"address": "9xQeWvG816bUx9EPjHmaT23yvVM2ZWbrrpZb9PusVFin",
"network": "solana",
"type": "multisig",
"status": [
"blacklisted"
],
"label": "Treasury Multisig",
"entity": "DAO Alpha",
"blocked_by": [
{
"id": "dao-alpha",
"name": "DAO Alpha",
"icon_url": "https://cdn.example.com/icons/dao-alpha.png"
}
],
"tags": [
"DAO",
"Squads v3 Multisig"
],
"balances": [
{
"denom": "SOL",
"amount": "5000000000"
}
],
"last_active_at": "2025-08-20T12:34:56.000Z"
}
],
"meta": {
"next_cursor": "eyJpZCI6IjkxeFFlV3Z...",
"previous_cursor": "eyJpZCI6IjkxeFFlV3Z...",
"first_page_cursor": "eyJpZCI6IjkxeFFlV3Z...",
"last_page_cursor": "eyJpZCI6IjkxeFFlV3Z...",
"total_count": 100,
"page_number": 1
}
}Returns a list of addresses that match the specified search term.
curl --request GET \
--url https://api.range.org/v2/addresses \
--header 'X-API-KEY: <api-key>'{
"items": [
{
"id": "solana:9xQeWvG816bUx9EPjHmaT23yvVM2ZWbrrpZb9PusVFin",
"address": "9xQeWvG816bUx9EPjHmaT23yvVM2ZWbrrpZb9PusVFin",
"network": "solana",
"type": "multisig",
"status": [
"blacklisted"
],
"label": "Treasury Multisig",
"entity": "DAO Alpha",
"blocked_by": [
{
"id": "dao-alpha",
"name": "DAO Alpha",
"icon_url": "https://cdn.example.com/icons/dao-alpha.png"
}
],
"tags": [
"DAO",
"Squads v3 Multisig"
],
"balances": [
{
"denom": "SOL",
"amount": "5000000000"
}
],
"last_active_at": "2025-08-20T12:34:56.000Z"
}
],
"meta": {
"next_cursor": "eyJpZCI6IjkxeFFlV3Z...",
"previous_cursor": "eyJpZCI6IjkxeFFlV3Z...",
"first_page_cursor": "eyJpZCI6IjkxeFFlV3Z...",
"last_page_cursor": "eyJpZCI6IjkxeFFlV3Z...",
"total_count": 100,
"page_number": 1
}
}Authorization method required to allow user to access the api endpoints.
Comma-separated list of blockchain networks to filter by (e.g., ethereum, solana). Repeats also allowed.
["ethereum", "solana"]Comma-separated list of address statuses. Repeats also allowed.
malicious, blacklisted, sanctioned ["malicious", "sanctioned"]List of addresses that match the specified search term.
Show child attributes
Record id
"solana:9xQeWvG816bUx9EPjHmaT23yvVM2ZWbrrpZb9PusVFin"
Address
"9xQeWvG816bUx9EPjHmaT23yvVM2ZWbrrpZb9PusVFin"
Blockchain network identifier (e.g. solana, stellar)
"solana"
account, validator, contract, module, multisig "multisig"
malicious, blacklisted, sanctioned ["blacklisted"]"Treasury Multisig"
"DAO Alpha"
[
{
"id": "dao-alpha",
"name": "DAO Alpha",
"icon_url": "https://cdn.example.com/icons/dao-alpha.png"
}
]["DAO", "Squads v3 Multisig"]"2025-08-20T12:34:56.000Z"
Show child attributes
Opaque string cursor pointing to the next page of results. null if there is no next page.
"eyJpZCI6IjkxeFFlV3Z..."
Opaque string cursor pointing to the previous page of results. null if there is no previous page.
"eyJpZCI6IjkxeFFlV3Z..."
Opaque string cursor pointing to the very first page in the entire dataset with respect to the current filter.
"eyJpZCI6IjkxeFFlV3Z..."
Opaque string cursor pointing to the very last page in the entire dataset with respect to the current filter.
"eyJpZCI6IjkxeFFlV3Z..."
Total number of results.
100
Current page number.
1