GET
/
api
/
v1
/
withdrawalNetworks
/
Get Withdrawal Networks
curl --request GET \
  --url https://skala-sandbox.ripio.com/api/v1/withdrawalNetworks/ \
  --header 'Authorization: Bearer <token>'
[
  {
    "network_name": "ETHEREUM",
    "assets": [
      {
        "name": "USDC",
        "contract_address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Access token obtained via /oauth2/token/. Use as Authorization: Bearer <access_token>.

Query Parameters

currency
string

Currency ticker (e.g., ETH, BTC) to filter networks.

include_currency
boolean

Set to true to get the available assets for every network.

Response

A list of withdrawal networks.

network_name
string
required

The network name.

Example:

"ETHEREUM"

assets
object[]

Array of available assets in the network. Shown only if include_currency is true.