Chat request containing messages, tutor ID, and conversation context
- Stream tutor responses in real-time using Server-Sent Events
Send a message to a tutor and receive a complete response
Retrieve tutor configuration by ID
Verify that the tutor API service is accessible
Verify that the tutor chat functionality is operational
Stream tutor responses in...
Taskbase Public API (0.9.0)
Download OpenAPI description
Languages
Servers
https://api.taskbase.com/
- https://api.taskbase.com/tutor/chat
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.taskbase.com/tutor/chat \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{}'Response
application/json
{ "message": "string", "messages": [ "string" ], "debugLogs": [ { … } ] }
- https://api.taskbase.com/tutor/{tutor_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.taskbase.com/tutor/{tutor_id}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "id": "string", "name": "string", "topic_ids": [ 0 ], "initial_messages": [ "string" ], "description": "string" }
- https://api.taskbase.com/tutor/healthcheck
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.taskbase.com/tutor/healthcheck \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "status": "string" }
- https://api.taskbase.com/tutor/healthcheck/chat
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.taskbase.com/tutor/healthcheck/chat \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "message": "string", "messages": [ "string" ], "debugLogs": [ { … } ] }
- https://api.taskbase.com/tutor/chat/stream
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.taskbase.com/tutor/chat/stream \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{}'