Chatbot Quick Prompts
Fetch Quick Prompt
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 Quick Prompt
Fetch quick-prompt of the chatbot
GET
/
v0
/
chatbots
/
{chatbotId}
/
quick-prompts
/
{promptId}
curl --request GET \
--url https://sitegpt.ai/api/v0/chatbots/{chatbotId}/quick-prompts/{promptId} \
--header 'Authorization: Bearer <token>'
{
"success": true,
"message": "Fetched quick prompt of the chatbot successfully",
"data": {
"id": "fd0bfc2d-2ea6-41dc-afb9-7a3ea7b2b729",
"title": "Contact us",
"description": "How to contact you?"
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Id of the chatbot
Id of the quick prompt
Response
200
application/json
OK
Success Response
Was this page helpful?
curl --request GET \
--url https://sitegpt.ai/api/v0/chatbots/{chatbotId}/quick-prompts/{promptId} \
--header 'Authorization: Bearer <token>'
{
"success": true,
"message": "Fetched quick prompt of the chatbot successfully",
"data": {
"id": "fd0bfc2d-2ea6-41dc-afb9-7a3ea7b2b729",
"title": "Contact us",
"description": "How to contact you?"
}
}