Skip to main content
POST
/
api
/
security
/
email
/
verify-otp
curl --request POST \
  --url https://api.starkfi.io/api/security/email/verify-otp \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api_key>' \
  --data '{"email":"user@example.com","code":"123456"}'
{
  "statusCode": 200,
  "success": true,
  "status": "email_verified",
  "message": "Email verified successfully"
}

Documentation Index

Fetch the complete documentation index at: https://docs.starkfi.io/llms.txt

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

x-api-key
string
required
Your StarkFi API key when required by your environment.
email
string
required
Same email used for send OTP.
code
string
required
One-time code received by the user.
curl --request POST \
  --url https://api.starkfi.io/api/security/email/verify-otp \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api_key>' \
  --data '{"email":"user@example.com","code":"123456"}'
{
  "statusCode": 200,
  "success": true,
  "status": "email_verified",
  "message": "Email verified successfully"
}