GET
/
prompts
List Prompts
curl --request GET \
  --url https://api.kakiyo.com/v1/prompts \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "prompt_987654321",
    "name": "Sales Outreach Sequence",
    "type": "message",
    "model": "model_claude3",
    "createdAt": "2023-05-15T09:20:00Z"
  }
]

Authorizations

Authorization
string
header
required

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

Response

List of prompts

id
string
Example:

"prompt_987654321"

name
string
Example:

"Sales Outreach Sequence"

type
enum<string>
Available options:
message,
invitation
Example:

"message"

model
string
Example:

"model_claude3"

createdAt
string<date-time>
Example:

"2023-05-15T09:20:00Z"