Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.quick.bot/llms.txt

Use this file to discover all available pages before exploring further.

Your bot can also be executed with HTTP requests. This is useful if you want to integrate your bot with another service or if you want to use it in a different programming language.

Usage

  1. All your requests need to be authenticated with an API token. See instructions.
  2. To start the chat, send a POST request to https://viewer.quick.bot/api/v1/conversations The first response will contain a sessionId that you will need for subsequent requests.
  3. To send replies, send POST requests to https://viewer.quick.bot/api/v1/conversations/<session ID>/messages With the following JSON body:
    {
      "message": "This is my reply"
    }
    
Check out the Start chat API reference for more information