Skip to main content
POST
/
deposit
/
crypto
Get crypto deposit address
curl --request POST \
  --url https://jamquest-dev.techboo.net/api/v1/deposit/crypto \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "currency": "<string>",
  "network": "<string>"
}
'
{
  "status": "ok",
  "data": {
    "wallet_address": "<string>",
    "currency": "<string>",
    "network": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Access token obtained during login or registration. Use this token in the Authorization header for authenticated requests.

Body

application/json
currency
string
required
network
string
required

Response

Crypto deposit address provided

status
string
Example:

"ok"

data
object