{"info":{"name":"Vylo OTP API","description":"WhatsApp OTP verification as a service. Set the `apiKey` variable to your key (starts with otpsk_), then Send a code and Verify it. Base URL is preset to the production service.","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"auth":{"type":"bearer","bearer":[{"key":"token","value":"{{apiKey}}","type":"string"}]},"variable":[{"key":"baseUrl","value":"https://otp.vylo-tech.com","type":"string"},{"key":"apiKey","value":"otpsk_YOUR_API_KEY","type":"string"},{"key":"phone","value":"9647501234567","type":"string"}],"item":[{"name":"Send OTP","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"{{phone}}\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseUrl}}/otp/send","host":["{{baseUrl}}"],"path":["otp","send"]},"description":"Generates a one-time code and delivers it to the phone over WhatsApp."}},{"name":"Verify OTP","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"{{phone}}\",\n  \"code\": \"123456\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseUrl}}/otp/verify","host":["{{baseUrl}}"],"path":["otp","verify"]},"description":"Checks the code the user entered. Replace \"123456\" with the delivered code."}},{"name":"Usage & balance","request":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/usage","host":["{{baseUrl}}"],"path":["usage"]},"description":"Your send counts, cost, and balance."}}]}