curl --location --request POST 'https://btf-node.vercel.app/v1/otp' \
--header 'Content-Type: application/json' \
--data-raw '{
"telephone": "+2349012345678",
"reason": "sign-up"
}'
{
"success": true,
"statusCode": 200,
"data": {
"otp": {
"code": "only-appears-in-dev-mode",
"expiryTimestamp": "2025-08-03T09:54:55.304Z"
}
},
"message": "an OTP has been successfully sent to your phone number"
}