Kubiya LogoKubiya Developer Docs

Converse API

API endpoint for executing conversation or chat operations in the Kubiya platform

Converse API

This playground makes API calls to Kubiya API through a secure server-side proxy. Your requests never expose your API token directly to the browser.

Endpoints

MethodPathDescription
POST/api/v1/converseExecute a conversation or chat operation

Example Usage

POST /api/v1/converse

Request body:

{
  "message": "Hello, how can I help you?",
  "context": {}
}

Response:

{
  "reply": "How can I assist you today?",
  "context": {}
}

The Converse API allows you to interact with Kubiya's conversational AI for chat-based operations.

On this page