POST
/
prompts
curl --request POST \
  --url https://api.kakiyo.com/v1/prompts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Sales Outreach Sequence",
  "model": "model_claude3",
  "type": "message"
}'
{
  "message": "Prompt created successfully"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Prompt to create

The body is of type object.

Response

201
application/json

Prompt created successfully

The response is of type object.