Skip to main content
GET
https://api.sitespeak.ai
/
v1
/
{chatbot_id}
/
prompts
curl -X GET https://api.sitespeak.ai/v1/{chatbot_id}/prompts \
  -H "Accept: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Path Parameters

NameTypeDescription
chatbot_id*StringThe ID of your chatbot. You can find the ID on the settings page for your chatbot.

Headers

NameTypeDescription
Accept*Stringapplication/json
Authorization*StringBearer
curl -X GET https://api.sitespeak.ai/v1/{chatbot_id}/prompts \
  -H "Accept: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Response

[
  {
    "id": "",
    "chatbot_id": "",
    "name": "Pricing Plans",
    "prompt": "How much does it cost to use your service?",
    "type": "ai",
    "action": null,
    "created_at": "2023-10-05T13:36:59.000000Z",
    "updated_at": "2023-10-05T13:36:59.000000Z"
  },
  {
    "id": "",
    "chatbot_id": "",
    "name": "",
    "prompt": "",
    "type": "ai",
    "action": null,
    "created_at": "2023-10-05T13:36:45.000000Z",
    "updated_at": "2023-10-05T13:36:45.000000Z"
  }
]
Last modified on January 22, 2026