Skip to main content
POST
/
prompts
Create Prompt
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": "Messages"
}
'
{
  "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

name
string
required
Minimum string length: 3
Example:

"Sales Outreach Sequence"

model
string
required

The ID of the AI model to use for this prompt. You can retrieve available model IDs from your dashboard.

Example:

"model_claude3"

type
enum<string>
required

The prompt type. Messages is used for direct LinkedIn message outreach. Comment is reserved for an upcoming feature that will enable AI-powered engagement on prospects' LinkedIn posts.

Available options:
Messages,
Comment
Example:

"Messages"

Response

Prompt created successfully

message
string
Example:

"Prompt created successfully"

Last modified on January 28, 2026