Mid-tier OpenAI-compatible chat completion
Mid-tier OpenAI-compatible chat completion. Qwen3 235B (instruct/thinking/VL/next), DeepSeek V3.2, GLM 5.2, venice-uncensored 1.2, GLM 4.6/4.7, Kimi K2.5, MiniMax M3 Preview, Nemotron 3 Ultra 550B, Mistral Small 2603, Gemma 4 26B. Supports tools/tool_choice and stream:true SSE.
3000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-14
updated
Provider
x402.dellbot.win · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x234864Febc3AD18Fc99620c576729bdebfb62bCb",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "3000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"messages": [
{
"content": "say hi in 3 words",
"role": "user"
}
],
"model": "qwen3-235b-a22b-instruct-2507"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"choices": [
{
"finish_reason": "stop",
"index": 0,
"message": {
"content": "Hello there.",
"role": "assistant"
}
}
],
"id": "chatcmpl-abc123",
"model": "llama-3.3-70b",
"object": "chat.completion",
"usage": {
"completion_tokens": 4,
"prompt_tokens": 12,
"total_tokens": 16
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"max_tokens": {
"type": "integer"
},
"messages": {
"description": "OpenAI-style chat messages",
"items": {
"properties": {
"content": {
"type": "string"
},
"role": {
"enum": [
"system",
"user",
"assistant",
"tool"
],
"type": "string"
}
},
"required": [
"role",
"content"
],
"type": "object"
},
"type": "array"
},
"model": {
"enum": [
"aion-labs-aion-2-0",
"deepseek-v3.2",
"gemini-3-flash-preview",
"google-gemma-4-26b-a4b-it",
"grok-build-0-1",
"hermes-3-llama-3.1-405b",
"kimi-k2-5",
"llama-3.3-70b",
"mercury-2",
"minimax-m25",
"minimax-m27",
"minimax-m3-preview",
"mistral-small-2603",
"nvidia-nemotron-3-ultra-550b-a55b",
"qwen3-235b-a22b-instruct-2507",
"qwen3-235b-a22b-thinking-2507",
"qwen3-5-35b-a3b",
"qwen3-6-27b",
"qwen3-next-80b",
"qwen3-vl-235b-a22b",
"venice-uncensored-1-2",
"venice-uncensored-role-play",
"zai-org-glm-4.6",
"zai-org-glm-4.7",
"zai-org-glm-5",
"zai-org-glm-5-2"
],
"type": "string"
},
"stream": {
"type": "boolean"
},
"temperature": {
"type": "number"
},
"tool_choice": {},
"tools": {
"type": "array"
}
},
"required": [
"messages"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"choices": {
"type": "array"
},
"id": {
"type": "string"
},
"model": {
"type": "string"
},
"usage": {
"type": "object"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402.dellbot.win/chat" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402.dellbot.win/chat");
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://x402.dellbot.win/chat")
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/13491.json, and this resource appears in /discovery/resources and /discovery/search.