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 '
{
  "agentId": "<string>",
  "label": "<string>",
  "chain": "tempo",
  "limits": {
    "perTx": "<string>",
    "daily": "<string>"
  },
  "allowlist": [
    "<string>"
  ]
}
'
{
  "id": "<string>",
  "agentId": "<string>",
  "address": "<string>",
  "chain": "<string>",
  "balance": "<string>",
  "limits": {
    "perTx": "<string>",
    "daily": "<string>"
  },
  "allowlist": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json
agentId
string
required

Stable identifier for the agent

label
string
chain
enum<string>
default:tempo
Available options:
tempo,
solana,
base
limits
object
allowlist
string[]

Response

201 - application/json

Wallet created

id
string
agentId
string
address
string
chain
string
balance
string
limits
object
allowlist
string[]