List of Supported Networks
Returns the list of blockchain networks supported by BitOK KYT, including their AML/KYT check capabilities.
HTTP Request
GET /v1/basics/networks/
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
code | string | No | Unique network code (e.g., BTC, ETH). |
page | integer | No | Page number within the paginated result set. |
page_size | integer | No | Number of results to return per page. |
If no parameters are provided, default pagination settings are used.
Response
A successful response returns HTTP 200 OK with pagination metadata and an array of NETWORK_SUPPORT objects.
NETWORK_SUPPORT
| Parameter | Data type | Description |
|---|---|---|
code | String | The code of the network. |
name | String | The name of the network. |
check_levels | Object | Levels of support. |
check_levels.transfer_exposure | Object | Levels of supporting the transfer exposure checks. |
check_levels.transfer_exposure.base | String | The base level of supporting the transfer checks. Possible values: - full - direct - limited - none |
check_levels.transfer_exposure.extra | Array | Extra levels of supporting transfer checks for specific tokens. Possible values: - full - direct - limited - none |
check_levels.transfer_counterparty | Object | Levels of supporting the counterparty checks. |
check_levels.transfer_counterparty.base | String | The base level of supporting the address (counterparty) checks. Possible values: - full - direct - limited - none |
check_levels.transfer_counterparty.extra | Array | Extra levels of supporting the counterparty checks for specific tokens. Possible values: - full - direct - limited - none |
Example Response
{
"page": 1,
"page_size": 20,
"total_pages": 1,
"total_items": 5,
"items": [
{
"code": "BTC",
"name": "Bitcoin",
"check_levels": {
"transfer_exposure": {
"base": "full",
"extra": []
},
"transfer_counterparty": {
"base": "full",
"extra": []
}
}
}
]
}
Try It
GET/v1/basics/networks/
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.
}