Skip to main content
GET
/
wallet
/
network
/
currency-networks
/
{currency}
network - Get networks for a currency
curl --request GET \
  --url https://api.ripio.com/wallet/network/currency-networks/{currency}/ \
  --header 'authorization: <authorization>' \
  --header 'signature: <signature>' \
  --header 'timestamp: <timestamp>'
{
  "error_code": null,
  "message": null,
  "data": [
    {
      "currency": "ETH",
      "currency_balance_id": 3,
      "network": {
        "id": 1,
        "code": "ethereum",
        "name": "Ethereum",
        "status_tag": null,
        "deliver_time": "~15 min",
        "enabled": true,
        "use_memo": false
      },
      "native_network": true,
      "standard": "ERC20",
      "network_standard": "ERC20",
      "fee": "0.001",
      "fee_tag": null,
      "send": true,
      "receive": true,
      "order": 1,
      "enabled": true,
      "min_amount": "0.001",
      "max_amount": "100.000",
      "is_partial_disabled_send": false,
      "is_partial_disabled_receive": false,
      "messages": []
    }
  ]
}

Headers

authorization
string
required

The API key as a string.

signature
string
required

See the Generating Signature section for more details.

timestamp
number
required

A timestamp in milliseconds. See the Timestamp Security section for more details.

timstamp-tolerance
number

An additional, non-required parameter, that you can send to specify the number of milliseconds after the timestamp for the request to be valid. See the Timestamp Security section for more details.

Path Parameters

currency
string
required

This property was not properly documented

Query Parameters

network__code
string

Filter by network code (e.g. ethereum).

native_network
boolean

Filter to return only networks where this currency is native.

Response

Currency networks retrieved successfully.

error_code
string
required
Example:

null

message
string
required
Example:

null

data
object[]
required