跳转到主要内容
GET
/
v1
/
wallet
/
{wallet}
/
identity
获取钱包身份
curl --request GET \
  --url 'https://api.helius.xyz/v1/wallet/{wallet}/identity?api-key='
{
  "address": "HXsKP7wrBWaQ8T2Vtjry3Nj3oUgwYcqq9vrHDM12G664",
  "type": "exchange",
  "name": "Binance 1",
  "category": "Centralized Exchange",
  "tags": [
    "Centralized Exchange"
  ],
  "domainNames": [
    "toly.sol",
    "kash.superteam"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://www.helius.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

每次请求消耗 100 点数

请求参数

wallet
string
必填
Solana 钱包地址(base58 编码)或 SNS/ANS 域名(例如 toly.sol, miester.bonk)。域名解析仅限主网。任何非 .sol 的域名都被视为 ANS 自定义 TLD —— 没有固定的 TLD 白名单。

授权

api-key
string
query
必填

作为查询参数传递的API密钥

路径参数

wallet
string
必填

Solana 钱包地址(base58编码)或 SNS/ANS 域名(例如 toly.sol, miester.bonk)。域名解析仅限主网。任何非 .sol 域名都被视为 ANS 自定义 TLD — 并没有固定的 TLD 白名单。

响应

已找到身份信息

address
string
必填

Solana 钱包地址

示例:

"HXsKP7wrBWaQ8T2Vtjry3Nj3oUgwYcqq9vrHDM12G664"

type
string
必填

实体类型

示例:

"exchange"

name
string
必填

显示名称

示例:

"Binance 1"

category
string
必填

类别分类

示例:

"Centralized Exchange"

tags
string[]
必填

附加分类标签

示例:
["Centralized Exchange"]
domainNames
string[]

此地址拥有的所有链上域名,包括SNS (.sol)和ANS自定义TLD (.bonk, .wen等)。如果设置了最喜欢的.sol域名,则优先显示;其余域名按字母顺序排列。如果钱包没有域名,则省略。

示例:
["toly.sol", "kash.superteam"]