Skip to main content
POST
/
v1
/
account
/
deposit
Deposit funds
curl --request POST \
  --url https://api.joyride.exchange/v1/account/deposit \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": 10000000000
}
'
{
  "wallet": "<string>",
  "available": 123,
  "locked": 123
}

Headers

x-wallet
string

Wallet address — primary user identification method

x-device-id
string

Device identifier — mobile fallback when x-wallet is not set

Query Parameters

wallet
string

Wallet address — fallback if neither x-wallet nor x-device-id headers are set

Body

application/json
amount
integer
required

Amount to deposit in USDC micros

Example:

10000000000

Response

Updated account balance

wallet
string
required
available
integer
required

Available balance after deposit (USDC micros)

locked
integer
required

Locked balance (USDC micros)