Conversation erstellen
curl --request POST \
--url https://api.example.com/conversations \
--header 'Content-Type: application/json' \
--data '
{
"assistant_id": "<string>",
"type": "<string>",
"variables": {
"customer_name": "<string>",
"company": "<string>",
"source": "<string>"
}
}
'import requests
url = "https://api.example.com/conversations"
payload = {
"assistant_id": "<string>",
"type": "<string>",
"variables": {
"customer_name": "<string>",
"company": "<string>",
"source": "<string>"
}
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
assistant_id: '<string>',
type: '<string>',
variables: {customer_name: '<string>', company: '<string>', source: '<string>'}
})
};
fetch('https://api.example.com/conversations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/conversations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'assistant_id' => '<string>',
'type' => '<string>',
'variables' => [
'customer_name' => '<string>',
'company' => '<string>',
'source' => '<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/conversations"
payload := strings.NewReader("{\n \"assistant_id\": \"<string>\",\n \"type\": \"<string>\",\n \"variables\": {\n \"customer_name\": \"<string>\",\n \"company\": \"<string>\",\n \"source\": \"<string>\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/conversations")
.header("Content-Type", "application/json")
.body("{\n \"assistant_id\": \"<string>\",\n \"type\": \"<string>\",\n \"variables\": {\n \"customer_name\": \"<string>\",\n \"company\": \"<string>\",\n \"source\": \"<string>\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/conversations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"assistant_id\": \"<string>\",\n \"type\": \"<string>\",\n \"variables\": {\n \"customer_name\": \"<string>\",\n \"company\": \"<string>\",\n \"source\": \"<string>\"\n }\n}"
response = http.request(request)
puts response.read_body{
"status": true,
"conversation_id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"history": [
{
"role": "assistant",
"content": "Hello John Smith! Welcome to Acme Corp support. How can I help you today?"
}
]
}
{
"status": true,
"conversation_id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"history": []
}
{
"status": false,
"error": "Assistant not found"
}
{
"status": false,
"error": "Insufficient balance. Please top up your account."
}
AI Chatbot
Conversation erstellen
Neue Chat-Session mit einem KI-Assistenten starten
POST
/
conversations
Conversation erstellen
curl --request POST \
--url https://api.example.com/conversations \
--header 'Content-Type: application/json' \
--data '
{
"assistant_id": "<string>",
"type": "<string>",
"variables": {
"customer_name": "<string>",
"company": "<string>",
"source": "<string>"
}
}
'import requests
url = "https://api.example.com/conversations"
payload = {
"assistant_id": "<string>",
"type": "<string>",
"variables": {
"customer_name": "<string>",
"company": "<string>",
"source": "<string>"
}
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
assistant_id: '<string>',
type: '<string>',
variables: {customer_name: '<string>', company: '<string>', source: '<string>'}
})
};
fetch('https://api.example.com/conversations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/conversations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'assistant_id' => '<string>',
'type' => '<string>',
'variables' => [
'customer_name' => '<string>',
'company' => '<string>',
'source' => '<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/conversations"
payload := strings.NewReader("{\n \"assistant_id\": \"<string>\",\n \"type\": \"<string>\",\n \"variables\": {\n \"customer_name\": \"<string>\",\n \"company\": \"<string>\",\n \"source\": \"<string>\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/conversations")
.header("Content-Type", "application/json")
.body("{\n \"assistant_id\": \"<string>\",\n \"type\": \"<string>\",\n \"variables\": {\n \"customer_name\": \"<string>\",\n \"company\": \"<string>\",\n \"source\": \"<string>\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/conversations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"assistant_id\": \"<string>\",\n \"type\": \"<string>\",\n \"variables\": {\n \"customer_name\": \"<string>\",\n \"company\": \"<string>\",\n \"source\": \"<string>\"\n }\n}"
response = http.request(request)
puts response.read_body{
"status": true,
"conversation_id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"history": [
{
"role": "assistant",
"content": "Hello John Smith! Welcome to Acme Corp support. How can I help you today?"
}
]
}
{
"status": true,
"conversation_id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"history": []
}
{
"status": false,
"error": "Assistant not found"
}
{
"status": false,
"error": "Insufficient balance. Please top up your account."
}
Famulor 1.0 API (Legacy). Diese Seite gilt nur für Famulor 1.0 (
app.famulor.de) und bleibt aus Kompatibilitätsgründen erhalten. Für die aktuelle Plattform nutze die Famulor 2.0 API-Referenz.Request Body
string
erforderlich
UUID des Assistenten, der die Conversation übernehmen soll
string
Standard:"widget"
Conversation-Typ. Optionen:
widget (kostenpflichtig) oder test (kostenlos für Entwicklung)object
Request Examples
Response Fields
boolean
erforderlich
Zeigt an, ob die Anfrage erfolgreich war
string
erforderlich
UUID der erstellten Conversation; für weitere Nachrichten nutzen
array
Response Examples
{
"status": true,
"conversation_id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"history": [
{
"role": "assistant",
"content": "Hello John Smith! Welcome to Acme Corp support. How can I help you today?"
}
]
}
{
"status": true,
"conversation_id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"history": []
}
{
"status": false,
"error": "Assistant not found"
}
{
"status": false,
"error": "Insufficient balance. Please top up your account."
}
Notes
type: "widget"Conversations sind kostenpflichtig;type: "test"ist kostenlos für die Entwicklung.- Nutze aussagekräftige
variables, um die erste Antwort des Assistenten zu personalisieren. - Fahre mit
Send Messagefort und hole den Verlauf mitGet Conversation.
⌘I