가벼운 코딩 작업을 위한 GPT-5.1 Codex 계열의 저렴하고 빠른 모델입니다. 에이전틱 코딩 튜닝과 Responses API 인터페이스를 유지하면서 Codex 대비 약 1/5 가격으로 제공됩니다.
콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요
이 모델의 사용법을 Claude, ChatGPT 등에 복사
| 토큰 종류 | 크레딧 | 달러 환산 |
|---|---|---|
| 입력 토큰 | 464.5 | $0.31 |
| 출력 토큰 | 3,716 | $2.48 |
| 캐시된 토큰 | 46.45 | $0.03 |
* 1,500 크레딧 ≈ $1 (실제 요금은 사용량에 따라 달라질 수 있습니다)
curl -X POST "https://api.core.today/llm/openai/v1/responses" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "gpt-5.1-codex-mini",
"input": "Add null checks to this function and explain the change in one sentence:\n\n<code snippet>",
"max_output_tokens": 1000
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
model | string | Yes | gpt-5.1-codex-mini | 모델 식별자 |
input | string | array | Yes | - | Responses API 입력: 문자열 또는 입력 아이템 배열 (메시지, 도구 결과) |
instructions | string | No | - | 실행에 적용할 시스템 수준 지시문 |
max_output_tokens | integer | No | - | 응답의 최대 토큰 수 (Responses API 필드; max_tokens 아님) |
stream | boolean | No | false | Server-Sent Events 스트리밍 활성화 |
소규모 코딩 작업을 위한 저비용 Responses API 요청
curl -X POST "https://api.core.today/llm/openai/v1/responses" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "gpt-5.1-codex-mini",
"input": "Add null checks to this function and explain the change in one sentence:\n\n<code snippet>",
"max_output_tokens": 1000
}'