Tokens and networks

Use the endpoints below to fetch information regarding tokens and networks.

Returns the dictionary of tokens/assets

GET <api>/integration/partner/dictionary/assets

Headers

NameTypeDescription

x-api-key*

string

API Key

x-api-sig*

string

Signature created using API Secret

x-api-ts*

string

Timestamp of the request

Request Body

NameTypeDescription

assets*

array

Custom metadata for invoice

Response:
// Assets, tokens, fiat currencies array
- assets [required, array]
  // Code of the token
  - code [required, string]
  // Name
  - name [required, string]
  // Symbol for presentation/rendering purposes
  - symbol [required, string]
  // How many significant digits this token have after the dot 
  - formatDecimals [required, string]
  // Address of the token if applicable
  - address [optional, string]
  // Type of blockchain if applicable
  - blockchain [optional, string]
  // Label
  - label [required, string]
  // Whether this token is a stablecoin or not
  - isStable [optional, string]
  // Can we use this token in settlements
  - isSettlementSupported [required, string]

Returns the dictionary of blockchains

GET <api>/integration/partner/dictionary/blockchains

Headers

NameTypeDescription

x-api-key*

string

API Key

x-api-sig*

string

Signature created using API Secret

x-api-ts*

string

Timestamp of the request

Request Body

NameTypeDescription

assets*

array

Custom metadata for invoice

Response:
// Assets, tokens, fiat currencies array
- blockchains [required, array]
  // Type of the blockchain
  - blockchain [required, string]
  // Active flag
  - isActive [required, string]
  // TestNet/MainNet indicator
  - net [required, string]
  // Asset metadata
  - nativeAsset [required, object]
  // WEB3, BTC, Tron
  - apiType [required, string]

Last updated