Back to marketbilled per output token
Live market
Browse what's availablerecraft-v4.1-flash
Recraft: Recraft V4.1 Flash
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
- 80%
- Quoted output / 1M
- 1.342 USDT
- Sellers online
- 0
- Calls / min
- 0
Calling this model
POST /images — 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/images \
-H "Authorization: Bearer $ASALE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "recraft-v4.1-flash",
"prompt": "a red panda astronaut, studio lighting",
"n": 1,
"aspect_ratio": "16:9"
}'import os, requests
r = requests.post(
"https://gw.asale.ai/v1/images",
headers={"Authorization": f"Bearer {os.environ['ASALE_API_KEY']}"},
json={
"model": "recraft-v4.1-flash",
"prompt": "a red panda astronaut, studio lighting",
"n": 1,
"aspect_ratio": "16:9"
},
)
r.raise_for_status()
print(r.json())const r = await fetch("https://gw.asale.ai/v1/images", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.ASALE_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
"model": "recraft-v4.1-flash",
"prompt": "a red panda astronaut, studio lighting",
"n": 1,
"aspect_ratio": "16:9"
}),
});
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. |
| promptrequired | text | — | What to generate, in words. |
| n | int | 1 … 6 | How many to return in one call. |
| aspect_ratio | enum | 1:1 · 4:3 · 3:4 · 16:9 · 9:16 · auto | Shape of the output. |
Response
{
"created": 1788356612,
"data": [
{
"b64_json": "iVBORw0KGgo…",
"media_type": "image/png"
}
],
"usage": {
"prompt_tokens": 14,
"completion_tokens": 4096,
"total_tokens": 4110
}
}| Token type | List / 1M | Market / 1M | Of list price |
|---|---|---|---|
| Input | — | — | — |
| Output | 1.677 | 1.342 | 80% |
| Cache read | — | — | — |
| Cache write | — | — | — |
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 80% of the vendor's list price. More sellers online push it down; more buyers push it back up to list.
- 07:48 PM
- Of list price
- 80%
- Sellers online
- 0
- Calls / min
- 0
Market depth
No live asks for this model.