Skip to main content
GET
/
v1
/
wallet
/
{wallet}
/
identity
Get wallet identity
curl --request GET \
  --url 'https://api.helius.xyz/v1/wallet/{wallet}/identity?api-key='
import requests

url = "https://api.helius.xyz/v1/wallet/{wallet}/identity?api-key="

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api.helius.xyz/v1/wallet/{wallet}/identity?api-key=', 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.helius.xyz/v1/wallet/{wallet}/identity?api-key=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.helius.xyz/v1/wallet/{wallet}/identity?api-key="

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.helius.xyz/v1/wallet/{wallet}/identity?api-key=")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.helius.xyz/v1/wallet/{wallet}/identity?api-key=")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "address": "HXsKP7wrBWaQ8T2Vtjry3Nj3oUgwYcqq9vrHDM12G664",
  "type": "exchange",
  "name": "Binance 1",
  "category": "Centralized Exchange",
  "tags": [
    "Centralized Exchange"
  ],
  "domainNames": [
    "toly.sol",
    "kash.superteam"
  ]
}
{
"error": "Invalid wallet address",
"code": 400,
"details": "'invalid-address' is not a valid Solana address"
}
{
"error": "API key required. Pass via ?api-key=xxx or X-Api-Key header",
"code": 401
}
{
"error": "Invalid wallet address",
"code": 400,
"details": "'invalid-address' is not a valid Solana address"
}
{
"error": "RATE_LIMIT_EXCEEDED",
"code": 429,
"details": "Too many requests. Retry after 2 seconds."
}
{
"error": "INTERNAL_ERROR",
"code": 500,
"details": "An unexpected error occurred. Please retry."
}
Each request costs 100 credits. Requires a paid plan. Free-plan requests return 403 Forbidden.

Request Parameters

wallet
string
required
Solana wallet address (base58 encoded) or SNS/ANS domain name (e.g. toly.sol, miester.bonk). Domain resolution is mainnet-only. Any non-.sol domain is treated as an ANS custom TLD — there is no fixed TLD whitelist.

Authorizations

api-key
string
query
required

API key passed as query parameter

Path Parameters

wallet
string
required

Solana wallet address (base58 encoded) or SNS/ANS domain name (e.g. toly.sol, miester.bonk). Domain resolution is mainnet-only. Any non-.sol domain is treated as an ANS custom TLD — there is no fixed TLD whitelist.

Response

Identity information found

address
string
required

Solana wallet address

Example:

"HXsKP7wrBWaQ8T2Vtjry3Nj3oUgwYcqq9vrHDM12G664"

type
string
required

Type of entity

Example:

"exchange"

name
string
required

Display name

Example:

"Binance 1"

category
string
required

Category classification

Example:

"Centralized Exchange"

tags
string[]
required

Additional classification tags

Example:
["Centralized Exchange"]
domainNames
string[]

All on-chain domain names owned by this address, including SNS (.sol) and ANS custom TLDs (.bonk, .wen, etc.). The favorite .sol domain is first if set; remaining domains are sorted alphabetically. Omitted if the wallet owns no domains.

Example:
["toly.sol", "kash.superteam"]