Jetzt kostenlos anmelden und im Basistarif immer kostenlos Texte erzeugen!

Chats

Hinweise
Experten-Level
Der API-Schlüssel sollte als Bearer-Token im Autorisierungsheader der Anfrage gesendet werden. Erhalten Sie Ihren API-Schlüssel.
Liste

API endpoint:

GET
https://wryter.de/public/api/v1/chats

Beispiel anfordern:


curl --location --request GET 'https://wryter.de/public/api/v1/chats' \

--header 'Accept: application/json' \

--header 'Authorization: Bearer {api_key}'

Parameter
Art
Beschreibung
search
optional string
Die Suchabfrage.
search_by
optional string
Suche nach. Mögliche Werte sind: name für Name. Standardwert ist: name.
favorite
optional boolean
Nach Favoriten filtern.
sort_by
optional string
Sortiere nach. Mögliche Werte sind: id für Erstellt, name für Name. Standardwert ist: id.
sort
optional string
Sortieren. Mögliche Werte sind: desc für Absteigend, asc für Aufsteigend. Standardwert ist: desc.
per_page
optional integer
Ergebnisse pro Seite. Mögliche Werte sind: 10, 25, 50, 100. Standardwert ist: 10.
Zeige

API endpoint:

GET
https://wryter.de/public/api/v1/chats/{id}

Beispiel anfordern:


curl --location --request GET 'https://wryter.de/public/api/v1/chats/{id}' \

--header 'Accept: application/json' \

--header 'Authorization: Bearer {api_key}'

Speichern

API endpoint:

POST
https://wryter.de/public/api/v1/chats

Beispiel anfordern:


curl --location --request POST 'https://wryter.de/public/api/v1/chats' \

--header 'Content-Type: application/x-www-form-urlencoded' \

--header 'Authorization: Bearer {api_key}' \

--data-urlencode 'name={name}' \

--data-urlencode 'description={description}'

Parameter
Art
Beschreibung
name
erforderlich string
The chat name.
behavior
optional string
The behavior of the assistant.
Update

API endpoint:

PUT PATCH
https://wryter.de/public/api/v1/chats/{id}

Beispiel anfordern:


curl --location --request PUT 'https://wryter.de/public/api/v1/chats/{id}' \

--header 'Content-Type: application/x-www-form-urlencoded' \

--header 'Authorization: Bearer {api_key}'

Parameter
Art
Beschreibung
name
optional string
The chat name.
behavior
optional string
The behavior of the assistant.
favorite
optional boolean
Whether the chat is favorite or not.
Löschen

API endpoint:

DELETE
https://wryter.de/public/api/v1/chats/{id}

Beispiel anfordern:


curl --location --request DELETE 'https://wryter.de/public/api/v1/chats/{id}' \

--header 'Authorization: Bearer {api_key}'