Skip to main content
GET
/
v1
/
address
/
labels
/
search
Search Address Labels
curl --request GET \
  --url https://api.range.org/v1/address/labels/search \
  --header 'X-API-KEY: <api-key>'
[
  {
    "address": "<string>",
    "network": "<string>",
    "ecosystem": "<string>",
    "name_tag": "<string>",
    "category": "<string>",
    "address_role": "<string>",
    "entity": "<string>",
    "attributes": {},
    "tags": [
      "<string>"
    ],
    "malicious": true,
    "is_validator": true
  }
]

Authorizations

X-API-KEY
string
header
required

Authorization method required to allow user to access the api endpoints.

Query Parameters

networks
string[]

Comma-separated list of blockchain networks to filter addresses by (e.g., ethereum, solana)

addresses
string[]

Comma-separated list of blockchain addresses to filter (e.g., 0x123, 0x456)

searchString
string

Substring to search for in addresses or labels (case insensitive)

includeNft
boolean
default:false

Include NFT addresses in the search results

Response

200 - application/json

List of addresses that match the specified search term.

address
string
required
network
string
required
ecosystem
string
required
malicious
boolean
required
is_validator
boolean
required
name_tag
string
category
string
address_role
string
entity
string
attributes
object
tags
string[]