Skip to main content
GET
/
api
/
prompts
/
user
/
summary
Get summarized user prompts including reference prompts
curl --request GET \
  --url https://your-instance.example.com/api/prompts/user/summary \
  --header 'Authorization: Bearer <token>'
[
  {
    "_id": "5f7b1c2e8a1d4e0012c3b4a5",
    "name": "Leasing follow-up assistant",
    "description": "Follow up with leads 24h after their last response.",
    "isReference": false,
    "isOwned": true,
    "isPublished": false
  },
  {
    "_id": "5f7b1c2e8a1d4e0012c3b4a7",
    "name": "Tether published — Leasing starter",
    "description": "Marketplace starter prompt.",
    "isReference": true,
    "isOwned": false,
    "isContentVisible": true
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

userId
string

Optional user ID to fetch prompts for (defaults to current user)

Response

Summarized prompts returned

_id
string
name
string
description
string
temperature
number
responseTime
number
updatedAt
string<date-time>
isHidden
boolean
isReference
boolean
Example:

false

isOwned
boolean
Example:

true

isPublished
boolean
isCopied
boolean
copiedFromName
string | null
copiedFromOrg
string | null
Example:
[
{
"_id": "5f7b1c2e8a1d4e0012c3b4a5",
"name": "Leasing follow-up assistant",
"description": "Follow up with leads 24h after their last response.",
"isReference": false,
"isOwned": true,
"isPublished": false
},
{
"_id": "5f7b1c2e8a1d4e0012c3b4a7",
"name": "Tether published — Leasing starter",
"description": "Marketplace starter prompt.",
"isReference": true,
"isOwned": false,
"isContentVisible": true
}
]