Skip to main content
POST
/
v1
/
wallets
Create wallet
curl --request POST \
  --url https://api.rem.money/v1/wallets \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "chain": "base",
  "name": "<string>"
}
'
{
  "id": "<string>",
  "address": "<string>",
  "chain": "<string>",
  "balance": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
chain
enum<string>
required

The blockchain network

Available options:
base,
solana
name
string

Optional name for the wallet

Response

201 - application/json

Wallet created

id
string
address
string
chain
string
balance
string