메인 콘텐츠로 건너뛰기

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.

개요

이 엔드포인트는 활성 모델에 대한 현재 공개 가격 표면을 조회할 때 사용합니다. 단일 모델의 전체 가격 상세와 구조화된 가격, 출처까지 보려면 모델 가격 조회 를 사용하세요.

쿼리 파라미터

provider
string
선택 사항인 공급자 필터입니다. 예: openai, anthropic, google.
tag
string
선택 사항인 모델 태그 필터입니다. 예: chat, image, video, embedding, translation.

응답

object
string
항상 pricing입니다.
updated_at
string
응답에 포함된 최신 가격 항목의 ISO 타임스탬프입니다.
currency
string
항상 USD입니다.
data
array
가격 항목 배열입니다. 각 항목에는 model, provider, is_lock_price, capabilities, aliases, 그리고 상단의 대화형 스키마가 반환하는 공개 스칼라 또는 구조화 가격 요약 필드가 포함됩니다.
curl "https://api.lemondata.cc/v1/pricing?provider=openai&tag=chat" \
  -H "Authorization: Bearer sk-your-api-key"
{
  "object": "pricing",
  "updated_at": "2026-04-20T00:00:00.000Z",
  "currency": "USD",
  "data": [
    {
      "model": "gpt-4o",
      "provider": "openai",
      "is_lock_price": false,
      "input_per_1m_tokens": "2.50",
      "output_per_1m_tokens": "10.00",
      "capabilities": ["chat"],
      "aliases": ["gpt-4o-latest"]
    }
  ]
}
정확한 응답 스키마는 상단의 대화형 OpenAPI 패널을 참고하세요. 공개 가격 항목에는 lock_price_per_request, has_complex_pricing, supported_operations, pricing_summary, pricing_provenance가 추가로 노출될 수 있습니다.