Skip to main content
GET
/
dictionary
/
assets
/
{assetId}
Get Asset by ID
curl --request GET \
  --url https://api.bron.org/dictionary/assets/{assetId}
{
  "assetId": "<string>",
  "assetType": "blockchain",
  "contractInformation": {
    "contractAddress": "<string>",
    "standard": "erc20"
  },
  "decimals": "<string>",
  "networkId": "<string>",
  "symbol": "<string>",
  "symbolId": "<string>",
  "verified": true
}

Path Parameters

assetId
string
required

Query Parameters

assetIds
string[]

Filter results to only include these specific asset IDs

networkIds
string[]

Filter results to only include assets from these blockchain networks

symbolIds
string[]

Filter results to only include assets that represent these specific symbols

contractAddress
string

Filter results to only include assets that have this contract address

contractIssuer
string

Filter result to only include assets that have this contract issuer

assetType
enum<string>

Filter by what kind of asset. See details

Available options:
blockchain,
exchange,
fiat,
nft
limit
string
offset
string

Response

OK

assetId
string
required

The unique ID for this asset

Example:

"10001"

assetType
enum<string>

What kind of asset this is. See details

Available options:
blockchain,
exchange,
fiat,
nft
contractInformation
object

For crypto tokens, this contains the smart contract address and other technical blockchain details.

decimals
string

How many decimal places this asset can be split into

Example:

"18"

networkId
string

Which blockchain network this asset lives on (like Ethereum, Bitcoin). Only needed for crypto tokens - not used for regular money or exchange assets

Example:

"BTC"

symbol
string

Human-readable short name for this asset. Note: it can be changed by the issuer at any time.

Example:

"BTC"

symbolId
string

Points to the symbol that represents this asset (which stores symbol, name, icon etc.)

Example:

"s23378"

verified
boolean

True if we've confirmed this is the real, official token (not a fake/scam copy). Helps you avoid fraudulent tokens with similar names.