Skip to main content
POST
/
accounts
/
{accountId}
/
wallets
Create a wallet
curl --request POST \
  --url https://api.venlyfinance.com/api/v1/accounts/{accountId}/wallets \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "chain": "BASE"
}
'
{
  "success": true,
  "result": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "chain": "BASE",
    "address": "<string>",
    "status": "ACTIVE",
    "balances": [
      {
        "token": "USDC",
        "balance": "<string>",
        "availableBalance": "<string>",
        "pendingBalance": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Idempotency-Key
string<uuid>

Unique key for idempotent requests (UUID recommended)

Path Parameters

accountId
string<uuid>
required

Body

application/json
chain
enum<string>
required
Available options:
BASE

Response

Wallet created

success
boolean

Indicates whether the request was successful

result
object