Gemini-2.5-flash-lite Quick Chat
Google Native API Format
Gemini 2.5 Flash Lite - Native API - Quick Start
- Call Gemini-2.5-flash-lite model using Google Native API format
- Synchronous processing mode, returns conversation content in real-time
- Minimal parameters for quick start
- 💡 Need more features? Check Full API Reference
POST
Gemini-2.5-flash-lite Quick Chat
BaseURL: The default BaseURL is
https://direct.evolink.ai, which has better support for text models and long-lived connections. https://api.evolink.ai is the primary endpoint for multimodal services and serves as a fallback address for text models.Authorizations
##All APIs require Bearer Token authentication##
Get API Key:
Visit API Key Management Page to get your API Key
Add to request header:
Authorization: Bearer YOUR_API_KEYBody
application/json
List of conversation contents
Minimum array length:
1Example:
[
{
"role": "user",
"parts": [{ "text": "Hello, introduce yourself" }]
}
]