Skip to main content

List of Supported Tokens

Returns the list of tokens that have an extra level of KYT support in BitOK.

HTTP Request

GET /v1/basics/tokens/

Query Parameters

ParameterTypeRequiredDescription
networkStringNoCode of the network (e.g. BTC, ETH, TRX).
token_idStringNoToken ID. Usually this is a contract address or native for main network coin.
typeStringNoType of token. Possible values:
- native
- erc20
- erc721
- erc1155
- trc10
symbolStringNoToken symbol (e.g. USDT, ETH).
support_levelStringNoMinimum required support level. Possible values: full, direct, limited, none.
pageIntegerNoPage number within the paginated result set.
page_sizeIntegerNoNumber of results to return per page.

Response

A successful response returns HTTP 200 OK with pagination metadata and an array of TOKEN_SUPPORT objects.


TOKEN_SUPPORT:

ParameterData typeDescription
networkStringThe code of the network.
token_idStringThe id of the token. Usually the token contract address or native.
typeStringThe type of the token.

Possible values:
- native
- erc20
- erc721
- erc1155
- trc10
symbolStringThe symbol of the token.
nameStringThe name of the token.
check_levelsObjectLevels of KYT support.
check_levels.transfer_exposureStringThe level of supporting transfer exposure checks.

Possible values:
- full
- direct
- limited
- none
check_levels.transfer_counterpartyStringThe level of supporting counterparty checks.

Possible values:
- full
- direct
- limited
- none

Example Response

{
"page": 1,
"page_size": 20,
"total_pages": 204,
"total_items": 4080,
"items": [
{
"network": "BTC",
"token_id": "native",
"type": "native",
"symbol": "BTC",
"name": "Bitcoin",
"check_levels": {
"transfer_exposure": "full",
"transfer_counterparty": "full"
}
}
]
}

Try It

GET/v1/basics/tokens/
API KEY ID
API KEY SECRET
Query params (JSON)
HTTP Request
Press "Send Request" to generate HTTP request.
HTTP …
{
// Response will be shown here after the request.
}