Prompts
List Prompts
Open Source
Partners
- AgentOps-AI
- CrewAIInc
Conversations
Search
Agents
Tools
Usage
Potpie API
Secret Manager
Health
Prompts
List Prompts
GET
/
api
/
v1
/
prompts
{
"prompts": [
{
"id": "<string>",
"text": "<string>",
"type": "SYSTEM",
"version": 123,
"status": "ACTIVE",
"created_by": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"total": 123
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Required range:
x >= 0
Required range:
1 <= x <= 100
Response
200
application/json
Successful Response
Unique identifier of the prompt
The text content of the prompt
Type of the prompt (System or Human)
Available options:
SYSTEM
, HUMAN
Version number of the prompt
Status of the prompt (active or inactive)
Available options:
ACTIVE
, INACTIVE
Timestamp of when the prompt was created
Timestamp of when the prompt was last updated
ID of the user who created the prompt
{
"prompts": [
{
"id": "<string>",
"text": "<string>",
"type": "SYSTEM",
"version": 123,
"status": "ACTIVE",
"created_by": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"total": 123
}