메인 콘텐츠로 건너뛰기

Documentation Index

Fetch the complete documentation index at: https://docs.lemondata.cc/llms.txt

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

응답

object
string
항상 list입니다.
data
array
모델 객체 배열입니다.각 모델에는 다음이 포함됩니다:
  • id (string): 모델 식별자
  • object (string): model
  • created (integer): 생성 타임스탬프
  • owned_by (string): 모델 제공자
  • lemondata.category (string): 공개 모델 카테고리
  • lemondata.pricing_unit (string 또는 null): 공개 가격 단위
  • lemondata.capability_flags (object 또는 null): 공개 기능 요약
  • lemondata.supported_operations (array 또는 null): 공개 비채팅 작업 목록
  • lemondata.pricing_provenance (object 또는 null): 공개 가격 출처 메타데이터
  • lemondata.public_contract_summary (object 또는 null): public_operationsrequest_endpoint 만 포함하는 간단한 비채팅 탐색 요약
  • lemondata.agent_preferences (object): recommended_for 가 있을 때만 반환
GET /v1/models 는 탐색에 최적화되어 있습니다. capability_flags, pricing_provenance, 전체 public_contract 같은 상세 전용 메타데이터는 GET /v1/models/{model} 에 있습니다.

쿼리 파라미터

category
string
선택 사항인 공개 카테고리 필터입니다. chat, image, video, audio, tts, stt, music, 3d, embedding, rerank, translation 을 지원합니다.
선택 사항인 비채팅 추천 장면입니다. image, video, music, 3d, tts, stt, embedding, rerank, translation 을 지원합니다.
provider
string
선택 사항인 공급자 필터입니다. 예: openai, anthropic, google, deepseek.
tag
string
선택 사항인 모델 태그 필터입니다. 예: chat, image, video, embedding, translation.
recommended_for 가 있을 때 /v1/models 는 비채팅 모델을 최신 캐시된 24시간 성공률 스냅샷 기준으로 정렬합니다. status = "insufficient_samples" 인 모델은 계속 보이지만 점수화된 모델 뒤에 정렬됩니다.
curl "https://api.lemondata.cc/v1/models" \
  -H "Authorization: Bearer sk-your-api-key"
{
  "object": "list",
  "data": [
    {
      "id": "gpt-5.4",
      "object": "model",
      "created": 1706000000,
      "owned_by": "openai"
    },
    {
      "id": "claude-sonnet-4-6",
      "object": "model",
      "created": 1706000000,
      "owned_by": "anthropic"
    },
    {
      "id": "gemini-2.5-flash",
      "object": "model",
      "created": 1706000000,
      "owned_by": "google"
    }
  ]
}

공급자별 필터링

# Get all OpenAI models
openai_models = [m for m in models.data if m.owned_by == "openai"]

# Get all Anthropic models
anthropic_models = [m for m in models.data if m.owned_by == "anthropic"]

모델 카테고리

공급자예시 모델
openaigpt-5.4, gpt-5.4-mini, gpt-5-mini, gpt-4o, dall-e-3
anthropicclaude-opus-4-6, claude-sonnet-4-6, claude-haiku-4-5
googlegemini-3-pro-preview, gemini-3-flash-preview, gemini-2.5-pro
deepseekdeepseek-r1, deepseek-v3-2
xaigrok-4.1
moonshotkimi-k2.5
minimaxminimax-m2.1
metallama-3.3-70b, llama-3.1-405b

에이전트 추천 예시

Response
{
  "object": "list",
  "data": [
    {
      "id": "gemini-2.5-flash-image",
      "object": "model",
      "created": 1706000000,
      "owned_by": "google",
      "lemondata": {
        "category": "image",
        "pricing_unit": "per_request",
        "agent_preferences": {
          "image": {
            "preferred_rank": 1,
            "success_rate_24h": 0.98,
            "sample_count_24h": 423,
            "status": "ready",
            "updated_at": "2026-03-28T12:00:00.000Z",
            "basis": {
              "score_source": "clickhouse_24h",
              "channel_id": null,
              "physical_model": null
            }
          }
        }
      }
    }
  ]
}