Create Wallet
curl --request POST \
--url https://api.hopnow.io/v1/accounts/{account_id}/wallets \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"currency": "<string>",
"network": "<string>",
"label": "<string>"
}
'import requests
url = "https://api.hopnow.io/v1/accounts/{account_id}/wallets"
payload = {
"currency": "<string>",
"network": "<string>",
"label": "<string>"
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({currency: '<string>', network: '<string>', label: '<string>'})
};
fetch('https://api.hopnow.io/v1/accounts/{account_id}/wallets', 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.hopnow.io/v1/accounts/{account_id}/wallets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'currency' => '<string>',
'network' => '<string>',
'label' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.hopnow.io/v1/accounts/{account_id}/wallets"
payload := strings.NewReader("{\n \"currency\": \"<string>\",\n \"network\": \"<string>\",\n \"label\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.hopnow.io/v1/accounts/{account_id}/wallets")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"currency\": \"<string>\",\n \"network\": \"<string>\",\n \"label\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hopnow.io/v1/accounts/{account_id}/wallets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"currency\": \"<string>\",\n \"network\": \"<string>\",\n \"label\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"object": "<string>",
"account_id": "<string>",
"currency": "<string>",
"network": "<string>",
"address": "<string>",
"label": "<string>",
"status": "<string>",
"created": "<string>",
"updated": "<string>"
}Wallets
Create Wallet
Create a new cryptocurrency wallet
POST
/
v1
/
accounts
/
{account_id}
/
wallets
Create Wallet
curl --request POST \
--url https://api.hopnow.io/v1/accounts/{account_id}/wallets \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"currency": "<string>",
"network": "<string>",
"label": "<string>"
}
'import requests
url = "https://api.hopnow.io/v1/accounts/{account_id}/wallets"
payload = {
"currency": "<string>",
"network": "<string>",
"label": "<string>"
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({currency: '<string>', network: '<string>', label: '<string>'})
};
fetch('https://api.hopnow.io/v1/accounts/{account_id}/wallets', 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.hopnow.io/v1/accounts/{account_id}/wallets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'currency' => '<string>',
'network' => '<string>',
'label' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.hopnow.io/v1/accounts/{account_id}/wallets"
payload := strings.NewReader("{\n \"currency\": \"<string>\",\n \"network\": \"<string>\",\n \"label\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.hopnow.io/v1/accounts/{account_id}/wallets")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"currency\": \"<string>\",\n \"network\": \"<string>\",\n \"label\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hopnow.io/v1/accounts/{account_id}/wallets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"currency\": \"<string>\",\n \"network\": \"<string>\",\n \"label\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"object": "<string>",
"account_id": "<string>",
"currency": "<string>",
"network": "<string>",
"address": "<string>",
"label": "<string>",
"status": "<string>",
"created": "<string>",
"updated": "<string>"
}Wallets are for crypto deposits only. For fiat deposits (USD, EUR, etc.), use Deposit Instructions instead. See the Deposit Flows guide for a complete overview.
Supported Currency and Network Combinations
- Sandbox
- Production
| Currency | Network | Notes |
|---|---|---|
USDC | solana_devnet | Fully functional — use a faucet to test deposits |
USDT | solana_devnet | Deposit PYUSD on Solana Devnet (temporary workaround) |
| Currency | Network |
|---|---|
USDC | ethereum |
USDC | solana |
USDT | ethereum |
USDT | solana |
One wallet is allowed per currency + network combination. Attempting to create a duplicate returns an error.
Path Parameters
string
required
The account’s external ID (starts with
acc_)Request Body
string
required
Cryptocurrency currency code (e.g., USDC_ETHEREUM, BTC, ETH)
string
required
Blockchain network identifier (e.g., ethereum, bitcoin, polygon)
string
required
User-friendly label for the wallet (max 255 characters)
Response
string
Wallet identifier (starts with
wal_)string
Always returns
"wallet"string
Parent account ID
string
Cryptocurrency currency
string
Blockchain network
string
On-chain wallet address
string
User-friendly label
string
Wallet status:
active, suspended, or inactivestring
ISO 8601 timestamp when created
string
ISO 8601 timestamp when last updated
Response Example
{
"id": "wal_fxnw87105mc1vuru4q8yzrez",
"object": "wallet",
"account_id": "acct_ka44qsvpo8q3wtzuwfqf0h6u",
"currency": "USDT",
"network": "solana_devnet",
"address": "C4bhocDFYFtK8fMypf31Frez7mztiim6PNvgDFbFQBLN",
"label": "Treasury USDT Wallet",
"status": "active",
"created": "2024-01-01T00:00:00Z",
"updated": "2024-01-01T00:00:00Z"
}
⌘I