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
| Parameter | Type | Required | Description |
|---|---|---|---|
network | String | No | Code of the network (e.g. BTC, ETH, TRX). |
token_id | String | No | Token ID. Usually this is a contract address or native for main network coin. |
type | String | No | Type of token. Possible values: - native - erc20 - erc721 - erc1155 - trc10 |
symbol | String | No | Token symbol (e.g. USDT, ETH). |
support_level | String | No | Minimum required support level. Possible values: full, direct, limited, none. |
page | Integer | No | Page number within the paginated result set. |
page_size | Integer | No | Number 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:
| Parameter | Data type | Description |
|---|---|---|
network | String | The code of the network. |
token_id | String | The id of the token. Usually the token contract address or native. |
type | String | The type of the token. Possible values: - native - erc20 - erc721 - erc1155 - trc10 |
symbol | String | The symbol of the token. |
name | String | The name of the token. |
check_levels | Object | Levels of KYT support. |
check_levels.transfer_exposure | String | The level of supporting transfer exposure checks. Possible values: - full - direct - limited - none |
check_levels.transfer_counterparty | String | The 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.
}