The cheapest tier of the Gemini 2.5 family, optimized for high-volume, latency-sensitive workloads. Delivers 2.5-generation quality at a fraction of the cost, ideal for classification, extraction, and real-time chat at scale.
Test this model instantly in the Console Playground โ no code required
Copy usage instructions for Claude, ChatGPT, or other AI
| Token Type | Credits | USD Equivalent |
|---|---|---|
| Input Tokens | 186 | $0.12 |
| Output Tokens | 743 | $0.50 |
* 1,500 credits โ $1 (actual charges may vary based on usage)
curl -X POST "https://api.core.today/llm/gemini/v1beta/models/gemini-2.5-flash-lite:generateContent" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"contents": [
{
"parts": [
{
"text": "Classify the sentiment of this review as positive, negative, or neutral. Respond with just the label.\n\nReview: The product works great but the delivery was slow."
}
]
}
],
"generationConfig": {
"temperature": 0,
"maxOutputTokens": 10
}
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
contents | array | Yes | - | Array of content objects with parts (Gemini native format). Supports text, image, video, and audio inputs. |
systemInstruction | object | No | - | System instruction to steer model behavior. |
generationConfig | object | No | - | Generation settings: temperature, topP, maxOutputTokens (max 65,536), stopSequences, responseMimeType, etc. |
tools | array | No | - | Function declarations the model can call. |
Fast, low-cost text classification
curl -X POST "https://api.core.today/llm/gemini/v1beta/models/gemini-2.5-flash-lite:generateContent" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"contents": [
{
"parts": [
{
"text": "Classify the sentiment of this review as positive, negative, or neutral. Respond with just the label.\n\nReview: The product works great but the delivery was slow."
}
]
}
],
"generationConfig": {
"temperature": 0,
"maxOutputTokens": 10
}
}'POST /llm/gemini/v1beta/models/gemini-2.5-flash-lite:generateContent