메인 콘텐츠로 건너뛰기
GET
/
api
/
models
Models
curl --request GET \
  --url https://api.cometapi.com/api/models
{
  "data": [
    {
      "id": "<string>",
      "object": "<string>",
      "created": 123,
      "owned_by": "<string>",
      "permission": [
        {
          "id": "<string>",
          "object": "<string>",
          "created": 123,
          "allow_create_engine": true,
          "allow_sampling": true,
          "allow_logprobs": true,
          "allow_search_indices": true,
          "allow_view": true,
          "allow_fine_tuning": true,
          "organization": "<string>",
          "group": null,
          "is_blocking": true
        }
      ],
      "root": "<string>",
      "parent": null
    }
  ],
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://apidoc.cometapi.com/llms.txt

Use this file to discover all available pages before exploring further.

모델 목록 가져오기

이 엔드포인트는 사용 가능한 모든 모델에 대한 정보를 조회합니다. 공개 카탈로그 엔드포인트이므로 Authorization 헤더가 필요하지 않습니다.
  • Method: GET
  • URL: https://api.cometapi.com/api/models

응답

200 - application/json

Successful Response

data
object[]
필수

List containing model information. Each object represents an available model

success
boolean
필수

Indicates whether the entire API request was successfully executed