Skip to content

API Reference

This section provides API documentation for the Ticos platform, covering conversation summarization, voice capabilities, knowledge base, face management, and terminal control.

Authentication

Most endpoints require an API Key for authentication. You can pass it in one of the following ways:

  • HTTP Header: Authorization: Bearer <YOUR_API_KEY>
  • Query Parameter: terminal_secret=<YOUR_API_KEY>

Conversation & Summary

  • Stardust Config — Conversation memory summarization (/summarize)
  • Notify — Event notifications and pushes

Voice Capabilities

Data & Configuration

Biometrics

Terminal Control

Quick Start Example

Test the summarization endpoint using curl:

Terminal window
curl --location 'https://api.ticos.cn/summarize' \
--header 'Authorization: Bearer <YOUR_API_KEY>' \
--header 'Content-Type: application/json' \
--data '{
"conversation_history": [
{ "role": "user", "content": "Hello, help me log today's greeting events." },
{ "role": "assistant", "content": "Sure, I will sync them to the daily report system." }
]
}'