1M 토큰 컨텍스트 윈도우(일부 환경 200K), 128K 최대 출력 토큰, 2026년 1월까지의 학습 기준일을 갖춘 Anthropic 최상위 Opus 모델입니다. Opus 4.7 대비 장기 에이전트형 코딩, 도구 호출 정확도가 향상되었고, 필요한 턴에서만 추론하는 adaptive thinking을 지원합니다. Anthropic Messages 및 OpenAI Chat Completions 형식과 호환됩니다.
콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요
이 모델의 사용법을 Claude, ChatGPT 등에 복사
| 토큰 종류 | 크레딧 | 달러 환산 |
|---|---|---|
| 입력 토큰 | 9,290 | $6.19 |
| 출력 토큰 | 46,450 | $30.97 |
* 1,500 크레딧 ≈ $1 (실제 요금은 사용량에 따라 달라질 수 있습니다)
curl -X POST "https://api.core.today/llm/anthropic/v1/messages" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "claude-opus-4-8",
"messages": [
{
"role": "system",
"content": "You are a principal research analyst. Provide rigorous, source-aware analysis."
},
{
"role": "user",
"content": "Compare the safety and capability trade-offs of frontier closed-weight models versus open-weight alternatives for enterprise deployment in 2026, with mitigations."
}
],
"max_tokens": 8000
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
messages | array | Yes | - | 메시지 객체 배열 (OpenAI 형식) |
max_tokens | integer | No | 4096 | 응답의 최대 토큰 수 (최대 128000) |
stream | boolean | No | false | Server-Sent Events 스트리밍 활성화 |
Claude Opus 4.8을 활용한 대용량 문서 심층 다단계 분석
curl -X POST "https://api.core.today/llm/anthropic/v1/messages" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "claude-opus-4-8",
"messages": [
{
"role": "system",
"content": "You are a principal research analyst. Provide rigorous, source-aware analysis."
},
{
"role": "user",
"content": "Compare the safety and capability trade-offs of frontier closed-weight models versus open-weight alternatives for enterprise deployment in 2026, with mitigations."
}
],
"max_tokens": 8000
}'Claude Opus 4.8로 프로덕션 수준 코드 생성
curl -X POST "https://api.core.today/llm/anthropic/v1/messages" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "claude-opus-4-8",
"messages": [
{
"role": "system",
"content": "You are a senior software engineer. Write clean, well-tested, production code."
},
{
"role": "user",
"content": "Implement a distributed rate limiter in Go using Redis Cluster with the leaky bucket algorithm. Include unit tests."
}
],
"max_tokens": 6000
}'