Skip to main content

Endpoint

GET /v1/models
Authorization: Bearer mb_live_*
Lists the capability tiers you can pass as model to /v1/chat/completions. OpenAI-compatible shape.

Tiers

modelTierUse case
mirobody-flashDefault — fast, low costEveryday health Q&A, high concurrency
mirobody-expertDeeper reasoningComplex report interpretation, multi-step analysis
Each tier maps to an internal provider at runtime; bare provider names may also pass through for advanced use. Billing is per actual token usage, settled in CNY — unit prices come from runtime config, and the console usage page is the source of truth. Self-hosting (SDK / open source) is free software; you pay only for your own infrastructure and LLM keys.

Example

curl https://mcp.thetahealth.cn/v1/models \
  -H "Authorization: Bearer $MIROBODY_API_KEY"

Response

{
  "object": "list",
  "data": [
    { "id": "mirobody-flash",  "object": "model", "owned_by": "mirobody" },
    { "id": "mirobody-expert", "object": "model", "owned_by": "mirobody" }
  ]
}