List Withdrawal Routes
curl --request GET \
--url https://api.hel.io/v1/withdraw/{withdrawalConfigId}/routesimport requests
url = "https://api.hel.io/v1/withdraw/{withdrawalConfigId}/routes"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.hel.io/v1/withdraw/{withdrawalConfigId}/routes', 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.hel.io/v1/withdraw/{withdrawalConfigId}/routes",
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.hel.io/v1/withdraw/{withdrawalConfigId}/routes"
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.hel.io/v1/withdraw/{withdrawalConfigId}/routes")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hel.io/v1/withdraw/{withdrawalConfigId}/routes")
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{
"fromCurrencies": [
{
"id": "<string>",
"symbol": "<string>",
"decimals": 123,
"mintAddress": "<string>",
"isNative": true,
"features": [
"<string>"
],
"blockchain": {
"id": "<string>",
"name": "<string>",
"symbol": "<string>"
}
}
],
"routes": [
{
"id": "<string>",
"fromCurrencyId": "<string>",
"toCurrency": {
"id": "<string>",
"symbol": "<string>",
"decimals": 123,
"mintAddress": "<string>",
"isNative": true,
"features": [
"<string>"
],
"blockchain": {
"id": "<string>",
"name": "<string>",
"symbol": "<string>"
}
},
"available": true,
"minimumAmountMinimalUnit": "<string>",
"minimumAmountUsd": "<string>"
}
]
}Runtime Flow
List Withdrawal Routes
Returns available swap and bridge routes for a withdrawal config. The merchant’s source assets are fixed by the config; the user picks a destination route. No authentication required (rate-limited).
GET
/
v1
/
withdraw
/
{withdrawalConfigId}
/
routes
List Withdrawal Routes
curl --request GET \
--url https://api.hel.io/v1/withdraw/{withdrawalConfigId}/routesimport requests
url = "https://api.hel.io/v1/withdraw/{withdrawalConfigId}/routes"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.hel.io/v1/withdraw/{withdrawalConfigId}/routes', 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.hel.io/v1/withdraw/{withdrawalConfigId}/routes",
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.hel.io/v1/withdraw/{withdrawalConfigId}/routes"
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.hel.io/v1/withdraw/{withdrawalConfigId}/routes")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hel.io/v1/withdraw/{withdrawalConfigId}/routes")
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{
"fromCurrencies": [
{
"id": "<string>",
"symbol": "<string>",
"decimals": 123,
"mintAddress": "<string>",
"isNative": true,
"features": [
"<string>"
],
"blockchain": {
"id": "<string>",
"name": "<string>",
"symbol": "<string>"
}
}
],
"routes": [
{
"id": "<string>",
"fromCurrencyId": "<string>",
"toCurrency": {
"id": "<string>",
"symbol": "<string>",
"decimals": 123,
"mintAddress": "<string>",
"isNative": true,
"features": [
"<string>"
],
"blockchain": {
"id": "<string>",
"name": "<string>",
"symbol": "<string>"
}
},
"available": true,
"minimumAmountMinimalUnit": "<string>",
"minimumAmountUsd": "<string>"
}
]
}Note: When using the production environment at moonpay.hel.io, set your API endpoint to
api.hel.io/v1. For the development environment, use api.dev.hel.io/v1.Filter out routes where
available is false. Use minimumAmountMinimalUnit and minimumAmountUsd to gate user input before prepare.⌘I
