Skip to main content
POST
/
api
/
v1
/
tracker
/
kya
/
entities
Retrieve Bulk Entities
curl --request POST \
  --url https://api.bitrace.io/api/v1/tracker/kya/entities \
  --header 'Content-Type: application/json' \
  --header 'X-Access-Key: <api-key>' \
  --data '
{
  "addresses": [
    "<string>"
  ],
  "network": "ethereum"
}
'
{
  "success": true,
  "code": 1,
  "msg": "SUCCESS",
  "data": [
    {
      "time": 1714053026890,
      "address": "TZ1noC2vbh8HRjt2icUbM1E6pKbSZ83Lfc",
      "network": "tron",
      "whitelist": false,
      "contract": false,
      "entity": {
        "entityName": "Bybit User",
        "entityCode": "bybit-user",
        "entityCategory": "Exchange",
        "entityCategoryCode": "exchange"
      }
    }
  ]
}
Due to the maximum length of a URL in browsers or servers, use POST instead of GET

Authorizations

X-Access-Key
string
header
required

API key authentication

Headers

Content-Type
enum<string>
default:application/json
Available options:
application/json
Accept
enum<string>
default:application/json
Available options:
application/json

Body

application/json
addresses
string[]
required

The address array that you want to retrieve entities for. And the array limit size is 100

Maximum array length: 100
network
enum<string>
required

The supported chainns short name, ethereum tron btc bsc ... See at Supported Chains

Available options:
ethereum,
eth,
tron,
btc,
bsc,
polygon,
arbitrum,
optimism,
avalanche,
base,
zksync,
merlin,
kaia,
iotex,
ftm,
theta,
etc,
lumia,
solana,
doge,
ltc

Response

Successful response

success
boolean

Request success or not

code
integer

Response code (1 for success, other numbers for errors)

msg
string

SUCCESS or error message

data
object[] | null