Skip to main content
POST
/
v1
/
auth
/
register
User Registration
curl --request POST \
  --url https://api.runly.pro/v1/auth/register \
  --header 'Content-Type: application/json' \
  --data '
{
  "handle": "dow",
  "identity": "<string>",
  "password": "<string>",
  "otp": "<string>",
  "invitation_code": "<string>"
}
'
{
  "status": {
    "code": 200,
    "message": "OK",
    "trace_id": "tr_reg_456"
  },
  "data": {
    "handle": "dow",
    "status": "active",
    "message": "Welcome to Runly! Your crypto assets are initialized."
  },
  "usage": {
    "latency_ms": 220
  }
}

Body

application/json
handle
string
required
Example:

"dow"

identity
string
required
password
string
required
otp
string
required
invitation_code
string

Response

200 - application/json

Registration Result

status
object
required
data
object
output
object
usage
object