Chatbot Quick Prompts
Fetch All Quick Prompts
API Documentation
Chatbot Appearance
Chatbot Custom Content
Chatbot Follow Up Prompts
Chatbot Icons
Chatbot Links
Chatbot Messages
Chatbot Personas
Chatbot Prompts
Chatbot Quick Prompts
Chatbot Settings
Chatbot Threads
Chatbot Quick Prompts
Fetch All Quick Prompts
Fetch all quick prompts of a particular chatbot
GET
/
v0
/
chatbots
/
{chatbotId}
/
quick-prompts
curl --request GET \
--url https://sitegpt.ai/api/v0/chatbots/{chatbotId}/quick-prompts \
--header 'Authorization: Bearer <token>'
{
"success": true,
"message": "Fetched quick prompts of the chatbot successfully",
"data": {
"prompts": [
{
"id": "538aa9ca-ef69-4a1a-a6a2-ba1f62f05c43",
"title": "Contact us",
"description": "How to contact you?"
},
{
"id": "40ffc3fe-9d74-439c-bfec-8b0d69a94836",
"title": "Yo",
"description": "Hey what's up?"
}
]
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Id of the chatbot
Response
200
application/json
OK
Success Response
Was this page helpful?
curl --request GET \
--url https://sitegpt.ai/api/v0/chatbots/{chatbotId}/quick-prompts \
--header 'Authorization: Bearer <token>'
{
"success": true,
"message": "Fetched quick prompts of the chatbot successfully",
"data": {
"prompts": [
{
"id": "538aa9ca-ef69-4a1a-a6a2-ba1f62f05c43",
"title": "Contact us",
"description": "How to contact you?"
},
{
"id": "40ffc3fe-9d74-439c-bfec-8b0d69a94836",
"title": "Yo",
"description": "Hey what's up?"
}
]
}
}