Get Withdrawal Currencies
curl --request GET \
--url https://api.hel.io/v1/currency/withdrawalimport requests
url = "https://api.hel.io/v1/currency/withdrawal"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.hel.io/v1/currency/withdrawal', 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/currency/withdrawal",
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/currency/withdrawal"
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/currency/withdrawal")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hel.io/v1/currency/withdrawal")
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{
"title": "currencyList"
}CURRENCY
Get Withdrawal Currencies
Returns currencies eligible for withdrawals on MoonPay Commerce. Use this to retrieve currency IDs when creating a withdrawal config or preparing a withdrawal.
GET
/
v1
/
currency
/
withdrawal
Get Withdrawal Currencies
curl --request GET \
--url https://api.hel.io/v1/currency/withdrawalimport requests
url = "https://api.hel.io/v1/currency/withdrawal"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.hel.io/v1/currency/withdrawal', 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/currency/withdrawal",
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/currency/withdrawal"
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/currency/withdrawal")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hel.io/v1/currency/withdrawal")
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{
"title": "currencyList"
}Note: When using the production environment at moonpay.hel.io, set your API endpoint to
api.hel.io/v1 and generate API keys there. For the development environment, use api.dev.hel.io/v1 and generate API keys from moonpay.dev.hel.io.Each currency includes a
decimals field. Use it to convert human-readable amounts to atomic units when preparing withdrawals (amount = humanAmount × 10^decimals). Decimal precision varies by chain — e.g. USDC is 6 decimals on Ethereum/Solana but 8 decimals on HyperCore.Response
200 - application/json
Show child attributes
Show child attributes
Available options:
FIAT, DIGITAL Available options:
PAYMENT_PRICING, PAYMENT_RECIPIENT, SWAP 