cURL
curl --request POST \ --url https://api.otpedge.com/v1/send-otp \ --header 'Content-Type: application/json' \ --data ' { "to": "<string>", "app": "<string>" } '
{ "success": true, "req_id": "oe_a1b2c3d4e5f6", "status": "dispatched" }
Dispatches a 6-digit verification code to a WhatsApp number.
Documentation IndexFetch the complete documentation index at: https://docs.otpedge.com/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.otpedge.com/llms.txt
Use this file to discover all available pages before exploring further.
919876543210
curl -X POST https://api.otpedge.com/v1/send-otp \ -H "Authorization: Bearer your_api_key_here" \ -H "Content-Type: application/json" \ -d '{ "to": "919876543210", "app": "MySecureApp" }'