Frontier chat on QWEN3 30B A3b FP8 (@cf/qwen/qwen3-30b-a3b-fp8)
Frontier chat on QWEN3 30B A3b FP8 (@cf/qwen/qwen3-30b-a3b-fp8). POST messages[] for reasoning-heavy agent workloads; dynamic token pricing. Hero: GET /heroes/frontier-llm. Tiers: /v1/chat/reasoning, /v1/chat/code, /v1/chat/agent, /v1/chat/70b.
8000 (raw units)
price
23
calls / 30d
2
unique payers
2026-09-18
updated
Provider
llm.gedx402.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xb3C2776cE3F99cb3366520c27b4aC5D436942Ab6",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "8000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"max_tokens": 128,
"messages": [
{
"content": "Say hello in one sentence.",
"role": "user"
}
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"model": "@cf/qwen/qwen3-30b-a3b-fp8",
"response": "Hello!"
},
"type": "json"
}
},
"routeTemplate": "/v1/llm/:model",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": true,
"properties": {
"max_tokens": {
"type": "integer"
},
"messages": {
"items": {
"type": "object"
},
"type": "array"
}
},
"required": [
"messages"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://llm.gedx402.com/v1/llm/:model" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://llm.gedx402.com/v1/llm/:model");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://llm.gedx402.com/v1/llm/:model")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3593.json, and this resource appears in /discovery/resources and /discovery/search.