Prompts
List Prompts
Calls
Vector Stores
Conversational Pathways
- GETGet All Pathways Information
- GETGet Single Pathway Information
- POSTCreate Pathway
- POSTUpdate Pathway
- DELDelete Pathway
- Pathway Chat
- Pathway Versions
- Pathway Folders
Inbound Numbers
Outbound Numbers
Custom Tools
Web Agents
Custom Twilio Accounts
Batches
Prompts
List Prompts
Retrieves all your saved prompts.
GET
/
v1
/
prompts
curl --request GET \
--url https://app.luly.ai/api/v1/prompts \
--header 'authorization: <authorization>'
{
"status": "success",
"prompts": [
{
"prompt": "My Prompt",
"last_updated": "2024-05-12T22:52:49.004987+00:00",
"id": "PT-aa8fb0ac-0014-43c0-9268-543522ce7e27",
"name": "My First Prompt"
}
]
}
Headers
Your API key for authentication.
Response
Response status of the request.
An array of prompt objects.
{
"status": "success",
"prompts": [
{
"prompt": "My Prompt",
"last_updated": "2024-05-12T22:52:49.004987+00:00",
"id": "PT-aa8fb0ac-0014-43c0-9268-543522ce7e27",
"name": "My First Prompt"
}
]
}
curl --request GET \
--url https://app.luly.ai/api/v1/prompts \
--header 'authorization: <authorization>'
{
"status": "success",
"prompts": [
{
"prompt": "My Prompt",
"last_updated": "2024-05-12T22:52:49.004987+00:00",
"id": "PT-aa8fb0ac-0014-43c0-9268-543522ce7e27",
"name": "My First Prompt"
}
]
}