开发者文档

从这些内容开始

搜索标题与正文↑ ↓ 选择 · Enter 打开 · Esc 关闭

Models

List models available through your account and inspect basic metadata.

Overview

The Models endpoint returns model IDs that can be used with OpenAI-compatible endpoints.

Request

GET https://uouo.cloud/v1/models

Example

bash
curl https://uouo.cloud/v1/models \
  -H "Authorization: Bearer $UOUODUO_API_KEY"

Response

json
{
  "object": "list",
  "data": [
    {
      "id": "gpt-4o-mini",
      "object": "model",
      "owned_by": "openai"
    }
  ]
}

Notes

  • /models on the website may show richer editorial metadata, pricing, context windows, and provider notes.
  • API availability depends on your account, provider status, workspace policy, and upstream configuration.
  • Cache model lists for a short time, but refresh before presenting admin or billing-critical choices.
Models · uouo cloud