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-4.5",
      "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

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
gemini-3-proGoogle Gemini 3 Pro
gemini-2.5-proGoogle Gemini 2.5 Pro
gemini-2.5-flashGoogle Gemini 2.5 Flash
gemini-3-flashGoogle Gemini 3 Flash
claude-4.5Claude 4.5 model

Authorizations

Authorization
string
header
required

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

Response

200 - undefined