Moonshot Kimi

Kimi K2.6 API

CN Moonshot Kimi | 출시일 2026-02
Playground에서 사용해보기 → API 키 받기

Kimi K2.6은 Moonshot의 범용 모델로, 뛰어난 장문 이해와 중국어 품질로 알려져 있습니다. 문서 Q&A, 요약, 이중 언어 어시스턴트에 좋은 선택입니다.

추론코드도구

가격 (공식 목록, 100만 토큰 기준)

입력
$0.93/M
출력
$3.86/M

사양

컨텍스트 창256K 토큰 최대 출력8.192K 토큰 입력 모달리티텍스트 스트리밍 APIOpenAI 호환

Kimi K2.6 사용 방법

OpenAI를 바로 대체할 수 있습니다. base_url과 model만 변경하세요.

# Python - pip install openai
from openai import OpenAI

client = OpenAI(
    base_url="https://meshtok.com/v1",
    api_key="sk-your-MeshTok-key",
)

resp = client.chat.completions.create(
    model="moonshot/kimi-k2.6",
    messages=[{"role":"user","content":"Hello!"}],
)
print(resp.choices[0].message.content)
# cURL
curl https://meshtok.com/v1/chat/completions \
  -H "Authorization: Bearer sk-your-MeshTok-key" \
  -H "Content-Type: application/json" \
  -d '{"model":"moonshot/kimi-k2.6","messages":[{"role":"user","content":"Hello!"}]}'

관련 모델

고려해볼 만한 다른 모델입니다.