Skip to main content
POST
Create uncensored chat conversation

Request

Send a POST request to below endpoint and append the response of the api back to the request.
curl

Body

json
Once the endpoint is called, the sample response looks like so;
json
To continue the next API call, append the object of property role and content to the messages array where the role value is assistant and the content value is the response message from the previous call. After that, append another object of same property and pass role value as user and content value as your new description to continue the chat. The request will look like so;
json
The response of the above request looks like so
json
Repeat the process as many times as possible until you are satisfied with the results.

Body

application/json
key
string
required

Your API Key used for request authorization

messages
object[]
required

Array of chat messages with role and content

max_tokens
integer
default:1000

Maximum number of tokens allowed in the response

Required range: 1 <= x <= 44000

Response

Chat response

status
enum<string>

Status of the request

Available options:
success,
error
message
string

Generated response message

meta
object

Metadata about the request and response