Entwickler-Schnellstart

In 5 Minuten loslegen

Novauth bietet OTP-APIs für Flash-Call, SMS, WhatsApp und Telegram unter einem einzigen Authentifizierungsmodell. Wähle deinen Kanal und folge der Schritt-für-Schritt-Anleitung.

Authentifizierung

Jede API-Anfrage erfordert deinen API-Schlüssel im Header x-api-key. Hol dir deinen Schlüssel im Novauth-Dashboard.

bash
curl -X POST https://api.novauth.com/api/v1/connect-hub/call/flash \
  -H "x-api-key: YOUR_API_KEY" \
  -H "x-account-id: YOUR_ACCOUNT_ID" \
  -H "Content-Type: application/json" \
  -d '{"callee": "+14155552671"}'

Gib deinen API-Schlüssel niemals in clientseitigem (Browser-)Code preis. Führe Novauth-API-Aufrufe immer von deinem Backend-Server aus durch.

Basis-URL & Formate

Alle Service-Endpunkte teilen sich dasselbe Basis-URL-Präfix:

text
https://api.novauth.com/api/v1/connect-hub
Content-Type
application/json für alle Anfragen und Antworten
Telefonformat
E.164 – z. B. +14155552671 (Ländervorwahl erforderlich)
IDs
ULIDs – sortierbar, global eindeutig, 26 Zeichen
HTTP-Status
200 Erfolg · 400 falsche Eingabe · 401 Auth-Fehler · 500 Serverfehler