gemini-3.0-flash Quick Chat
Google Native API Format
Gemini 3.0 Flash - Native API - Quick Start
- Use Google Native API format to call gemini-3.0-flash model
- Synchronous processing mode, real-time response
- Minimal parameters for quick start
- 💡 Need more features? Check Full API Reference
POST
gemini-3.0-flash 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
Conversation content list
Minimum array length:
1Example:
[
{
"role": "user",
"parts": [
{
"text": "Hello, please introduce yourself"
}
]
}
]