Skip to main content
GET
/
chat
/
models
获取模型列表
curl --request GET \
  --url https://api.mountsea.ai/chat/models \
  --header 'Authorization: Bearer <token>'

Overview

Returns a list of all available models for the Chat API.

Response Format

{
  "object": "list",
  "data": [
    {
      "id": "gpt-5.1",
      "object": "model",
      "created": 1234567890,
      "owned_by": "mountsea"
    },
    {
      "id": "gpt-5.1-all",
      "object": "model",
      "created": 1234567890,
      "owned_by": "mountsea"
    },
    {
      "id": "gemini-2.5-pro",
      "object": "model",
      "created": 1234567890,
      "owned_by": "mountsea"
    },
    {
      "id": "claude-sonnet-4-6",
      "object": "model",
      "created": 1234567890,
      "owned_by": "mountsea"
    }
  ]
}

Example

Using OpenAI SDK

from openai import OpenAI

client = OpenAI(
    api_key="your-api-key",
    base_url="https://api.mountsea.ai/chat"
)

models = client.models.list()

for model in models.data:
    print(f"Model: {model.id}")

Using cURL

curl https://api.mountsea.ai/chat/models \
  -H "Authorization: Bearer your-api-key"

Available Models

OpenAI Models

Model IDDescription
gpt-5.1Latest GPT-5.1 model
gpt-5.1-allGPT-5.1 with all capabilities
gpt-5.1-thinkingGPT-5.1 with enhanced reasoning
gpt-5.1-thinking-allGPT-5.1 thinking with all capabilities
gpt-5.1-2025-11-13GPT-5.1 snapshot (2025-11-13)
gpt-5.2Latest GPT-5.2 model

Google Gemini Models

Model IDDescription
gemini-3-proGoogle Gemini 3 Pro
gemini-2.5-proGoogle Gemini 2.5 Pro
gemini-2.5-flashGoogle Gemini 2.5 Flash (faster)
gemini-3-flashGoogle Gemini 3 Flash (faster)
gemini-3.1-proGoogle Gemini 3.1 Pro

Anthropic Claude Models

Model IDDescription
claude-4.5Claude 4.5,综合能力强
claude-opus-4-6Claude Opus 4.6,最强推理能力
claude-sonnet-4-6Claude Sonnet 4.6,性能与速度平衡
claude-haiku-4-5-20251001Claude Haiku 4.5,轻量快速

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - undefined