Skip to main content
GET
Get Prompt
Returns one team-owned prompt as separate sections, not a raw JSON blob. For Messages prompts: context, firstMessage, and followUps ([{ prompt, delay }]). delay is days after the previous message (1-30). Max 3 follow-ups. For Comment prompts: comment. Also returns guidelines with the schema, mandatory {{variables}}, and missing coverage. GET /prompts lists ids only. Call this endpoint before updating a prompt.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

ID of the prompt

Response

Prompt sections and guidelines

id
string
Example:

"prompt_987654321"

name
string
Example:

"Sales Outreach Sequence"

type
enum<string>
Available options:
Messages,
Comment
Example:

"Messages"

model
string
Example:

"model_claude3"

followUpEnabled
boolean

Whether follow-ups are sent. Does not delete stored followUps.

Example:

true

variables
string[]

Custom variable names used in this prompt

context
string

Messages only. Role and mission. Counts toward mandatory variables.

firstMessage
string

Messages only. First LinkedIn DM instructions. Counts toward mandatory variables.

followUps
object[]

Messages only. Max 3 items.

Maximum array length: 3
comment
string

Comment prompts only.

createdAt
string<date-time>
updatedAt
string<date-time>
guidelines
object

Schema, mandatory variables, and update rules for this prompt

Last modified on September 9, 2026