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 /user/profile

认证

Bearer JWT

响应

{
  id: string,
  nickname: string,
  avatarUrl: string,
  email: string,
  plan: string,                // free / basic / basic_year / pro / pro_year / max / max_year
  credit: number,              // 月度 credits(下月重置)
  addonCredits: number,        // Booster credits(持续)
  language: string,            // i18n 偏好
  watermark: boolean,          // 下载时自动加水印
  isOpenNotification: boolean,
  lastCreditIssuedAt: string | null
}

备注

  • Credits 检查时合并计算:credit + addon_credits
  • Booster 通过 kira-sg-billing 的 /billing/checkout/booster 购买
  • 月度 credit 按 plan 重置,addon_credits 持续累积

src/hono/user/index.ts

相关