Documentation API
Intégrez facilement nos agents IA à votre application
Endpoints principaux
POST
/api/v1/conversations
Créer une conversation
POST
/api/v1/messages
Envoyer un message
GET
/api/v1/agents
Lister les agents
Exemple d'utilisation
const response = await fetch(
'https://api.gemerify.com/v1/messages',
{
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
conversation_id: 'conv_123',
content: 'Bonjour',
role: 'user'
})
}
);