Skip to main content

Documentation Index

Fetch the complete documentation index at: https://tech.illasoft.com/llms.txt

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

路径

GET /thread/threads

认证

Bearer JWT

响应

{
  threads: Array<{
    id: string,
    resourceId: string,
    title: string,
    thumbImageUrl: string | null   // 最后一个版本的首张图缩略图
  }>
}
created_at DESC 排序;对每个线程独立取最后一个 thread_version 的首张图,生成签名 URL。

src/hono/thread/index.ts:183

相关