Skip to main content
POST
/
api
/
security
/
email
/
send-otp
curl --request POST \
  --url https://api.starkfi.io/api/security/email/send-otp \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api_key>' \
  --data '{"email":"user@example.com"}'
{
  "statusCode": 201,
  "success": true,
  "status": "otp_sent",
  "message": "Verification code sent to your email"
}

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
Email previously registered with POST /api/kyc/prepare. Lookup uses lowercase internally.
curl --request POST \
  --url https://api.starkfi.io/api/security/email/send-otp \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api_key>' \
  --data '{"email":"user@example.com"}'
{
  "statusCode": 201,
  "success": true,
  "status": "otp_sent",
  "message": "Verification code sent to your email"
}