Gemini 3.5 Flash Lite
https://api.foxwire.ai/v1/chat/completions#Pricing Summary
#요청 예시
Execute completions using standard OpenAI SDK formats by pointing base endpoints here.
curl https://api.foxwire.ai/v1/chat/completions \
-H "Authorization: Bearer $CORRY_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gemini-3.5-flash-lite",
"messages": [{"role": "user", "content": "Hello"}]
}'#응답 예시
표준 OpenAI 호환 채팅 컴플리션 객체입니다. model 필드는 요청한 이름으로 정규화됩니다.
{
"id": "chatcmpl-abc123",
"object": "chat.completion",
"model": "gemini-3.5-flash-lite",
"choices": [
{
"index": 0,
"message": { "role": "assistant", "content": "Hello! How can I help you today?" },
"finish_reason": "stop"
}
],
"usage": { "prompt_tokens": 12, "completion_tokens": 9, "total_tokens": 21, "cost": 0.000234, "currency": "USD" }
}Cost field
#프롬프트 캐싱
This model uses automatic (implicit) caching — repeated prompt prefixes are cached upstream automatically and billed at a lower rate, with no parameters needed (no cache_control). Keep long, stable context (system prompt, tools) at the start of your messages to get hits.
Automatic — nothing to do
#사고
지원 모델에서는 reasoning_effort(low / medium / high)를 추가하세요. 사고 내용은 응답의 reasoning_content 필드로 반환되며, 사고 토큰은 출력 요금으로 청구됩니다.
{
"model": "gemini-3.5-flash-lite",
"max_tokens": 2048,
"reasoning_effort": "high",
"messages": [{ "role": "user", "content": "your question" }]
}