Skip to main content
POST
/
v1
/
auth
/
login
User Login
curl --request POST \
  --url https://api.runly.pro/v1/auth/login \
  --header 'Content-Type: application/json' \
  --data '
{
  "identity": "dow@runly.me",
  "password": "<string>",
  "otp": "<string>"
}
'
{ "status": { "code": 200, "message": "OK", "trace_id": "tr_login_123" }, "data": { "access_token": "ey...", "me_id": "dow", "mfa_enabled": false, "nickname": "Dow" }, "usage": { "latency_ms": 80 } }

Body

application/json
identity
string
required
Example:

"dow@runly.me"

password
string
otp
string

Response

200 - application/json

Login Result

status
object
required
data
object
output
object
usage
object