Skip to main content
GET
/
currencies
/
{id}
/
networks
Get Withdrawal Currency Networks
curl --request GET \
  --url https://api.obiex.finance/v1/currencies/{id}/networks
import requests

url = "https://api.obiex.finance/v1/currencies/{id}/networks"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api.obiex.finance/v1/currencies/{id}/networks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.obiex.finance/v1/currencies/{id}/networks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.obiex.finance/v1/currencies/{id}/networks"

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.obiex.finance/v1/currencies/{id}/networks")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.obiex.finance/v1/currencies/{id}/networks")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "message": "Ok",
  "data": [
    {
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$",
      "memoRegex": null,
      "name": "BSC (BEP20)",
      "code": "BSC",
      "fee": 0.5,
      "feeType": "FLAT",
      "minimum": 10,
      "contractAddress": "0x2b90e061a517db2bbd7e39ef7f733fd234b494ca",
      "explorerLink": "https://bscscan.com/token/0x2b90e061a517db2bbd7e39ef7f733fd234b494ca"
    },
    {
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$",
      "memoRegex": null,
      "name": "Ethereum (ERC20)",
      "code": "ETH",
      "fee": 4,
      "feeType": "FLAT",
      "minimum": 15,
      "contractAddress": "0xdac17f958d2ee523a2206206994597c13d831ec7",
      "explorerLink": "https://etherscan.io/token/0xdac17f958d2ee523a2206206994597c13d831ec7"
    },
    {
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$",
      "memoRegex": null,
      "name": "Polygon (MATIC)",
      "code": "MATIC",
      "fee": 1,
      "feeType": "FLAT",
      "minimum": 10,
      "contractAddress": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F",
      "explorerLink": "https://polygonscan.com/token/0xc2132D05D31c914a87C6611C10748AEb04B58e8F"
    },
    {
      "addressRegex": "^[1-9A-HJ-NP-Za-km-z]{32,44}$",
      "memoRegex": null,
      "name": "Solana",
      "code": "SOL",
      "fee": 1,
      "feeType": "FLAT",
      "minimum": 10,
      "contractAddress": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
      "explorerLink": "https://solscan.io/token/Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB"
    }
  ]
}

Path Parameters

id
string
required

Response

200 - application/json

Get Withdrawal Currency Networks

The response is of type object.