cURL
curl --request POST \ --url https://apis.hopnow.io/v1/accounts/{account_id}/wallets \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "currency": "<string>", "network": "<string>", "label": "<string>" } '
{ "id": "<string>", "object": "<string>", "account_id": "<string>", "currency": "<string>", "network": "<string>", "addresses": [ { "address": "<string>", "tag": "<string>" } ], "label": "<string>", "status": "<string>", "created": "<string>", "updated": "<string>" }
Create a new cryptocurrency wallet
acc_
wlt_
"wallet"
Show Address Fields
active
suspended
inactive
{ "id": "wlt_1234567890abcdef", "object": "wallet", "account_id": "acc_1234567890abcdef", "currency": "USDC_ETHEREUM", "network": "ethereum", "addresses": [ { "address": "0x1234567890abcdef1234567890abcdef12345678", "tag": null } ], "label": "Treasury USDC", "status": "active", "created": "2024-01-01T00:00:00Z", "updated": "2024-01-01T00:00:00Z" }