Get up and running with Addis AI in minutes with our step-by-step guide
Get Started âReady-to-use implementation examples in JavaScript, Python, and more
View Examples âComprehensive details on endpoints, parameters, and response formats
Explore API âPlatform-specific guides for web, mobile, and server implementations
View Guides â// Simple text chat in JavaScriptconst response = await fetch("https://api.addisassistant.com/api/v1/chat_generate",{method: "POST",headers: {"Content-Type": "application/json","X-API-Key": "YOUR_API_KEY",},body: JSON.stringify({prompt: "á˘áľáŽáľáŤ áá á¨á°á áá ááľ?",target_language: "am",}),},);const data = await response.json();console.log(data.response_text);