Démarrage rapide — votre première réunion via l'API
L'API Instant Talk est une API REST standard, authentifiée par clé API. Pour créer votre première réunion : récupérez votre clé API depuis Settings → API Keys dans votre dashboard. Envoyez une requête POST à https://instant-talk.io/api/v1/meetings avec votre clé en header Authorization et les paramètres de la réunion en JSON. Récupérez l'URL de réunion dans la réponse et partagez-la avec vos participants.
Exemple complet en Node.js : const { data } = await fetch('https://instant-talk.io/api/v1/meetings', { method: 'POST', headers: { 'Authorization': 'Bearer YOUR_API_KEY', 'Content-Type': 'application/json' }, body: JSON.stringify({ title: 'Réunion commerciale', languages: ['fr', 'en', 'ja'], maxParticipants: 5, scheduledAt: '2025-06-15T14:00:00Z' }) }).then(r => r.json()); — La réponse inclut meetingId, joinUrl et hostUrl.
Le même appel en Python : import requests; response = requests.post('https://instant-talk.io/api/v1/meetings', headers={'Authorization': 'Bearer YOUR_API_KEY'}, json={'title': 'Sales call', 'languages': ['fr', 'en'], 'maxParticipants': 3}). L'URL de réunion est dans response.json()['joinUrl'].