Back to marketbilled per token
Live market
Browse what's availablegemma-3n-e4b-it
Google: Gemma 3n 4B
Nobody is selling this model right now. The prices below are the published rate, not an offer — a request would find no supply. They are kept visible so the rate can be watched and compared.
- Quoted share of list
- 100%
- Quoted output / 1M
- 0.12 USDT
- Sellers online
- 0
- Calls / min
- 0
Calling this model
POST /chat/completions — the same request OpenAI's SDKs already send. Point the base URL at asale and change nothing else.
Run it to see the answer here.
Or call it from your own code
curl https://gw.asale.ai/v1/chat/completions \
-H "Authorization: Bearer $ASALE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gemma-3n-e4b-it",
"messages": [
{
"role": "user",
"content": "Say hello in one short sentence."
}
]
}'import os, requests
r = requests.post(
"https://gw.asale.ai/v1/chat/completions",
headers={"Authorization": f"Bearer {os.environ['ASALE_API_KEY']}"},
json={
"model": "gemma-3n-e4b-it",
"messages": [
{
"role": "user",
"content": "Say hello in one short sentence."
}
]
},
)
r.raise_for_status()
print(r.json())const r = await fetch("https://gw.asale.ai/v1/chat/completions", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.ASALE_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
"model": "gemma-3n-e4b-it",
"messages": [
{
"role": "user",
"content": "Say hello in one short sentence."
}
]
}),
});
if (!r.ok) throw new Error(await r.text());
console.log(await r.json());Request fields
| Field | Type | Accepts | Meaning |
|---|---|---|---|
| modelrequired | string | — | Which model serves the request. |
| messagesrequired | text | — | The conversation so far, oldest first. |
| max_tokens | int | — … 4096 | Ceiling on the answer's length. |
| temperature | number | 0 … 2 | Higher is more varied; 0 is deterministic. |
| top_p | number | 0 … 1 | Nucleus sampling: consider only the most likely tokens summing to this. |
| top_k | int | 0 … — | Consider only this many of the most likely tokens; 0 is off. |
| frequency_penalty | number | -2 … 2 | Penalise tokens by how often they already appeared. |
| presence_penalty | number | -2 … 2 | Penalise tokens that appeared at all, pushing to new topics. |
| repetition_penalty | number | 0 … 2 | Penalise repetition; 1 is no penalty. |
| min_p | number | 0 … 1 | Drop tokens below this share of the top token's probability. |
| stop | string | — | Stop generating when this text appears. |
| stream | boolean | — | Send the answer as it is produced. |
Response
{
"id": "chatcmpl-…",
"object": "chat.completion",
"model": "gemma-3n-e4b-it",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "…"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 24,
"completion_tokens": 12,
"total_tokens": 36
}
}| Token type | List / 1M | Market / 1M | Of list price |
|---|---|---|---|
| Input | 0.06 | 0.06 | 100% |
| Output | 0.12 | 0.12 | 100% |
| Cache read | 0.06 | 0.06 | 100% |
| Cache write | 0.06 | 0.06 | 100% |
Channel quality
What has been measured about the supply behind this price. Readings, not promises — and aggregate, because which seller failed is nobody's business but theirs and ours.
- Online lanes
- 0
- Verified lanes
- —
- Proved they serve this model
- First byte (p50)
- —
- Success rate
- —
- No turns settled in the window
- Sellable capacity
- —
- Tokens offered right now
Latency and verification are measured over the last day; the success rate comes from settled traffic. See the status page
Price trend
Currently selling at 100% of the vendor's list price. More sellers online push it down; more buyers push it back up to list.
- 02:12 AM
- Of list price
- 100%
- Sellers online
- 0
- Calls / min
- 0
Market depth
No live asks for this model.