Skip to main content
POST
/
auth
/
verify-email
Verify email address using token
curl --request POST \
  --url https://core.cyberun.cloud/api/v1/auth/verify-email \
  --header 'Content-Type: application/json' \
  --data '
{
  "verify_token": "f6e5d4c3b2a1..."
}
'
{
  "is_success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.cyberun.cloud/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
verify_token
string
required

One-time token received via the verification email (valid for 24 hours).

Example:

"f6e5d4c3b2a1..."

Response

Email verified

is_success
boolean
required

Always true when the action completed successfully.

Example:

true