BazaarLinkBazaarLink
로그인
문서API 레퍼런스SDK 레퍼런스에이전트 사용법AI 스킬
모델

사용 가능한 모델 목록

사용 가능한 모든 모델을 반환하며 output_modalities로 필터링할 수 있습니다(임베딩 모델 목록 참조 — 동일한 엔드포인트에 output_modalities=embeddings를 적용한 것). Authorization 헤더가 없으면 전체 공개 목록을 공개 캐싱과 함께 반환하고, 조직에 속한 Bearer 키가 있으면 응답이 해당 조직의 모델 허용 목록으로 필터링되며 비공개, 단기 캐싱으로 전환됩니다.

GET/api/v1/models

쿼리 파라미터

output_modalities
string

쉼표로 구분된 단일 문자열(동일한 이름의 쿼리 키를 반복하는 것이 아님), 예: image 또는 text,image. all을 전달하면 모든 모달리티를 가져옵니다. 생략 시 기본값은 text만입니다. 인식할 수 없는 값은 400을 반환합니다. 일반적인 사용법: 텍스트 모델은 기본값을 유지하거나 명시적으로 text를 전달합니다. 이미지 모델은 image, 임베딩은 embeddings, 텍스트 음성 변환(TTS)은 speech, 음성 텍스트 변환(STT)은 transcription을 전달합니다. audio, video, rerank도 동일하게 사용할 수 있습니다(일부 카테고리는 현재 등록된 모델이 적거나 없음). 모든 카테고리의 합집합(합계가 아니라 하나의 모델이 여러 카테고리에 속할 수 있는 합집합)을 한 번에 가져오려면 all을 전달하세요.

comma-separated, single value
textimageembeddingsaudiovideorerankspeechtranscriptionall
Example: "text,image"
GET /api/v1/models
curl "https://bazaarlink.ai/api/v1/models?output_modalities=all"
응답 예시

성공. id는 이름이 공급자 간에 모호하지 않을 때는 짧은 형식(예: "gpt-4o")이고, 그렇지 않으면(또는 미디어 과금 모델인 경우) canonical 형식(예: "openai/gpt-4o")입니다 — canonical id는 항상 aliases에도 추가로 나열됩니다. 무료 모델은 canonical id에 :free를 붙인 항목이 추가됩니다(가격 0; 발견용 신호이며 두 번째 실제 모델이 아님). 필터가 text를 포함하면 목록에 auto와 auto:free 가상 라우팅 항목도 포함됩니다(owned_by는 "bazaarlink", 단일 실제 모델에 의해 뒷받침되지 않음). auto의 pricing은 "-1"/"-1"(실제로 라우팅된 모델이 비용을 결정함을 의미)이며 — auto:free만 진짜 무료입니다.

{
  "object": "list",
  "data": [
    {
      "id": "gpt-4o",
      "object": "model",
      "owned_by": "openai",
      "name": "OpenAI: GPT-4o",
      "description": "OpenAI's multimodal flagship model.",
      "context_length": 128000,
      "aliases": [
        "openai/gpt-4o"
      ],
      "pricing": {
        "prompt": "0.0000025",
        "completion": "0.00001"
      },
      "architecture": {
        "modality": "text+image->text",
        "input_modalities": [
          "text",
          "image"
        ],
        "output_modalities": [
          "text"
        ]
      },
      "knowledge_cutoff": "2023-10",
      "max_completion_tokens": 16384
    },
    {
      "id": "openai/gpt-4o:free",
      "object": "model",
      "owned_by": "openai",
      "name": "OpenAI: GPT-4o (free)",
      "description": "Rate-limited free tier. OpenAI's multimodal flagship model.",
      "context_length": 128000,
      "aliases": [],
      "pricing": {
        "prompt": "0",
        "completion": "0"
      },
      "architecture": {
        "modality": "text+image->text",
        "input_modalities": [
          "text",
          "image"
        ],
        "output_modalities": [
          "text"
        ]
      }
    },
    {
      "id": "auto",
      "object": "model",
      "owned_by": "bazaarlink",
      "name": "Auto Router",
      "description": "Automatically selects the best model for the request.",
      "aliases": [],
      "pricing": {
        "prompt": "-1",
        "completion": "-1"
      },
      "architecture": {
        "modality": "text->text",
        "input_modalities": [
          "text"
        ],
        "output_modalities": [
          "text"
        ]
      }
    }
  ]
}
Support
Support
Hi! How can we help you?
Send a message and we'll get back to you soon.
사용 가능한 모델 목록 — BazaarLink API