Open the Dashboard
Visit https://lk.uvio.chat/register in a modern desktop browser.
The Uvio Notify API provides OTP authentication, push notifications, events, and feed posts. Register your company, grab an API key, and make your first call in minutes.
For full endpoint details, see the API Reference.
The Uvio Notify API lets your product send OTP requests, push notifications, and manage events and feed posts.
Base URL: https://api.uvio.chat/notify/v1. All requests are authenticated via the X-API-Key header.
Make sure you have the following:
Head to https://lk.uvio.chat/register and follow the guided registration wizard.
Visit https://lk.uvio.chat/register in a modern desktop browser.
Provide the company name, 12-digit tax ID (INN), website, and the work email tied to your Uvio mobile app profile.
Approve the six-digit OTP that arrives in the Uvio mobile app. Codes expire in 10 minutes.
After registration, sign in at https://lk.uvio.chat. Authentication is OTP-based — no password needed.
Go to the login page and enter the email verified during registration.
An OTP code is pushed to the Uvio mobile app on your phone.
Enter the OTP within 10 minutes to unlock the dashboard and manage your company.
API keys authenticate your requests to the Uvio Notify API. Each key is scoped to your company and sent via the X-API-Key header.
https://lk.uvio.chat)X-API-Key: sk_live_...
Let's start with the simplest call — creating an OTP request. The base URL is https://api.uvio.chat/notify/v1.
curl -X POST https://api.uvio.chat/notify/v1/otps \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"identifier": "user@example.com",
"identifier_type": "email"
}'
{
"otp_id": "550e8400-e29b-41d4-a716-446655440000",
"expires_at": "2024-01-01T12:10:00Z",
"status": "sent"
}
If you received a 200 OK response with an otp_id, your integration is working. The user will receive the OTP code in the Uvio app.
You have your API key and a working first call. Explore what else you can build with Uvio Notify: