Prompts
List Prompts
Calls
Intelligence
Conversational Pathways
- GETGet All Pathways Information
- GETGet Single Pathway Information
- POSTCreate Pathway
- POSTUpdate Pathway
- DELDelete Pathway
- Pathway Chat
- Pathway Versions
- Pathway Folders
Vector Knowledge Bases
Voices
Custom Tools
Web Agents
Custom Twilio Accounts
Batches
SMS
Account
Organizations
- POSTCreate Organization
- DELDelete Organization
- GETGet Organization
- GETGet Organization Members
- GETGet Organization's Current Service Version
- GETList Organization's Service Versions
- PATCHUpdate Organization's Service Version
- PATCHUpdate Organization Members
- PATCHUpdate Organization Member Permissions
- PATCHUpdate Organization Properties
- GETGet User Organization Memberships
- DELLeave Organization
- GETGet Organization Billing Information
- GETGet Organization Billing Refill Information
Prompts
List Prompts
Retrieves all your saved prompts.
GET
/
v1
/
prompts
curl --request GET \
--url https://api.bland.ai/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://api.bland.ai/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"
}
]
}