Instant exchange API

Retrieve Currency Networks

GET:

This API endpoint provides the networks associated with a specific currency code.
Parameters:
NameTypeRequired or optionalDescription
coinstringrequiredCurrency code (Coin sub name)
Successful response fields:
NameTypeDescription
depositarrayList with deposit networks
withdrawsarrayList with withdraws networks
    subNamestringSub name network
Example request:

GET:

Example response:
{
  "deposit": [
    {
      "subName": "ERC20"
    }
  ],
  "withdraws": [
    {
      "subName": "ERC20"
    }
  ]
}