Back to marketbilled per token
Live market
Start buyinggpt-6-astra
OpenAI: GPT-6 Astra
- Of list price
- 5%
- Output / 1M
- 2.50 USDT
- Sellers online
- 1
- 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": "gpt-6-astra",
"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": "gpt-6-astra",
"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": "gpt-6-astra",
"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 | — … 128000 | Ceiling on the answer's length. |
| seed | int | — | Repeat a previous result exactly. |
| reasoning_effort | enum | none · minimal · low · medium · high · xhigh · max | How long the model thinks before answering. |
| stream | boolean | — | Send the answer as it is produced. |
Response
{
"id": "chatcmpl-…",
"object": "chat.completion",
"model": "gpt-6-astra",
"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 | 10.00 | 0.50 | 5% |
| Output | 50.00 | 2.50 | 5% |
| Cache read | 1.00 | 0.05 | 5% |
| Cache write | 12.50 | 0.625 | 5% |
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
- 1
- 55 more asking above the market
- Verified lanes
- 3/3
- Proved they serve this model
- First byte (p50)
- 22.59s
- p95 38.03s
- Success rate
- 92.7%
- 409 settled turns, 7d
- Sellable capacity
- 300.0M
- 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 5% of the vendor's list price. More sellers online push it down; more buyers push it back up to list.
- 07:35 AM
- Of list price
- 5%
- Sellers online
- 1
- Calls / min
- 0
Market depth
Price / 1MSellers
2.501
5.001
50.001