

In
$0.975 / 1M Out
$4.875 / 1M 

Text to Speech
const { OpenAI } = require('openai');
const api = new OpenAI({
baseURL: 'https://api.ai.cc/v1',
apiKey: '',
});
const main = async () => {
const result = await api.chat.completions.create({
model: 'google/gemini-3.7-flash',
messages: [
{
role: 'system',
content: 'You are an AI assistant who knows everything.',
},
{
role: 'user',
content: 'Tell me, why is the sky blue?'
}
],
});
const message = result.choices[0].message.content;
console.log(`Assistant: ${message}`);
};
main();
import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.a.cc/v1",
api_key="",
)
response = client.chat.completions.create(
model="google/gemini-3.7-flash",
messages=[
{
"role": "system",
"content": "You are an AI assistant who knows everything.",
},
{
"role": "user",
"content": "Tell me, why is the sky blue?"
},
],
)
message = response.choices[0].message.content
print(f"Assistant: {message}")

Gemini 3.7 Flash · API
Developer Access Slip
Inputper 1M tokens
$0.975
Outputper 1M tokens
$4.875
Cached Inputper 1M tokens
$0.0975
RATE CARDUSD / 1M tok
Google Search grounding billed separately at $0.0455 per call.
| Model | Input | Output | Context | Best For |
|---|---|---|---|---|
| Gemini 3.7 FlashThis page | $0.975/1M | $4.875/1M | 1.05M tok | Agentic coding + high-efficiency reasoning |
| Gemini 3.6 Flash | $1.95/1M | $9.75/1M | 1.05M tok | Reasoning + agents |
| Grok 4.6 | $2.6/1M | $7.8/1M | 500K tok | Reasoning + agents with long context |
| GPT-5.6 Sol | $6.5/1M | $39/1M | 1M tok | Frontier reasoning + agents |
| Gemini 3.5 Flash Lite | $0.39/1M | $3.25/1M | 1.05M tok | High-volume, cost-efficient agentic tasks |
THANK YOU FOR CALLING THE API
WWW.AI.CC · GEMINI-3.7-FLASH
AI Playground
Test all API models in the sandbox environment before you integrate. We provide more than 300 models to integrate into your app.
contact us