Skip to main content
GET
/
api
/
prompts
/
admin
/
all
List all prompts (superadmin)
curl --request GET \
  --url https://your-instance.example.com/api/prompts/admin/all \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "_id": "5f7b1c2e8a1d4e0012c3b4a5",
      "name": "Leasing follow-up assistant",
      "organizationId": "64a1b2c3d4e5f60012345678",
      "organizationName": "Maple Property Group",
      "isHidden": false,
      "isPublished": true,
      "updatedAt": "2026-04-22T10:14:00.000Z"
    }
  ],
  "totalCount": 27,
  "hiddenCount": 4,
  "visibleCount": 23,
  "currentPage": 1,
  "hasNextPage": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Query Parameters

page
integer
default:1
Required range: x >= 1
limit
integer
default:50
Required range: x >= 1
organizationId
string
visibility
enum<string>
default:all
Available options:
all,
hidden,
visible

Response

Prompts returned

data
object[]
required
totalCount
integer
required
currentPage
integer
required
hasNextPage
boolean
required
hiddenCount
integer
visibleCount
integer