Skip to Content
APIAccountCheck If Address Exists on Other Chains

Check If Address Exists on Other Chains

1. Overview & Typical Use

Checks whether a TRON address also exists on other blockchain networks (such as BitTorrent Chain), and returns the corresponding address and explorer links on each chain.

  • Typical use: cross-chain address association, multi-chain asset discovery, address information enrichment.
  • When not to use: to query detailed account information, use “Get Account Detail”; to query account token holdings, use “Get Account Token List”.

2. Endpoint & Authentication

GET /api/multiple/chain/query

This endpoint requires an API Key; calls without a Key return 401.

For Base URL and authentication, see Common Network & Authentication.

3. Request

ParameterTypeRequiredDefaultDescription
addressstringYesAccount address (Base58, starting with T)

4. Response

Top-level

FieldTypeRequiredDescriptionUnit/Precision
isTokenbooleanRequiredWhether the address is a token contract
isContractbooleanRequiredWhether the address is a contract
tronLogostringRequiredTRON logo URL
tronAddressstringRequiredAddress on TRON
multipleChainarrayRequiredOther chain info array, see below (empty array if address is not found on other chains)
redTagstringRequiredRed tag (risk marker; empty string if none)
publicTagstringOptionalPublic tag (only present when the address has a tag)
descriptionstringOptionalAddress description (only present for contract addresses with a description)

multipleChain[] element

FieldTypeRequiredDescriptionUnit/Precision
existbooleanRequiredWhether a corresponding address exists on that chain
chainstringRequiredChain name
namestringRequiredChain short name
addressstringRequiredCorresponding address on that chain
logostringRequiredChain logo URL
titlestringRequiredExplorer title
urlstringRequiredExplorer address detail URL
typestringOptionalChain type or address type identifier; code-derived from Greason v5 scan (reproducing sample pending)

5. Errors

For HTTP status codes, see Common Errors. Key points for this endpoint:

  • API Key Required: returns 401 if not provided (see Common Network & Authentication).
  • Empty result is not an error: returns 200 + multipleChain: [] when the address is not found on other chains, which is a normal response.
Last updated on: