Skip to main content

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

ParameterTypeRequiredDescription
codestringNoUnique network code (e.g., BTC, ETH).
pageintegerNoPage number within the paginated result set.
page_sizeintegerNoNumber 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

ParameterData typeDescription
codeStringThe code of the network.
nameStringThe name of the network.
check_levelsObjectLevels of support.
check_levels.transfer_exposureObjectLevels of supporting the transfer exposure checks.
check_levels.transfer_exposure.baseStringThe base level of supporting the transfer checks.

Possible values:
- full
- direct
- limited
- none
check_levels.transfer_exposure.extraArrayExtra levels of supporting transfer checks for specific tokens.

Possible values:
- full
- direct
- limited
- none
check_levels.transfer_counterpartyObjectLevels of supporting the counterparty checks.
check_levels.transfer_counterparty.baseStringThe base level of supporting the address (counterparty) checks.

Possible values:
- full
- direct
- limited
- none
check_levels.transfer_counterparty.extraArrayExtra 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.
}