# x402.dellbot.win Pro-Tier Chat Completion

> x402.dellbot.win Pro-Tier Chat Completion is a paid API for AI agents from x402.dellbot.win, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

OpenAI-compatible chat completion API offering pro-tier LLMs including Kimi K2.6, Qwen3-Coder 480B, Grok-4, and DeepSeek V4 Flash with tool use and streaming support

## Facts

- Endpoint: POST https://x402.dellbot.win/chat-pro
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-dellbot-win-27afcf99
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HBgKABJDl1IDmQ0qNDEkN

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability x402-dellbot-win-27afcf99 -d '<json body>'
```

Example prompt: Using the pro-tier Qwen3-Coder 480B model, write me a Python function that parses nested JSON and flattens it into a single-level dictionary, with streaming enabled so I see output as it arrives.

## When to prefer this

Choose this endpoint when you need access to the most capable models available on the x402 Bazaar, including Grok-4 family, Qwen3-Coder 480B, or Kimi K2.6 for demanding reasoning, advanced code generation, or complex multi-step tool use. Prefer this over the cheaper/mid-tier sibling endpoints when task complexity justifies the higher capability tier. Ideal when streaming SSE responses or structured tool/function calling is required with a top-tier model.

## Known failure modes

- Invalid or unsupported model name returns 400 or falls back to default
- Malformed messages array causes 422 validation error
- Payment not included or insufficient USDC causes 402 Payment Required
- Tool schema invalid format causes tool_calls to fail or be ignored
- Stream connection dropped mid-response if network is unstable
- Rate limiting or overload returns 503 or 429

## How this service works

Pro-tier reasoning & code. Claude Sonnet 5, Kimi K2.7 Code, Qwen3.7 Plus, Qwen3-Coder 480B, Grok-4 family (4-20, 4-3), DeepSeek V4, OpenAI gpt-54/gpt-52/gpt-53-codex, GLM 5.1. OpenAI-compatible. Supports tools/tool_choice and stream:true SSE.

## Output

An OpenAI-compatible chat completion response containing the assistant's generated message, optionally streamed as SSE events. If tools were provided, may return tool_call objects with function names and arguments. Includes token usage metadata.

## Example request

```json
{
 "input": {
  "body": {
   "model": "kimi-k2-6",
   "stream": false,
   "messages": [
    {
     "role": "user",
     "content": "Hello, can you help me understand how to use APIs?"
    }
   ],
   "max_tokens": 512,
   "temperature": 0.7
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "messages"
     ],
     "properties": {
      "model": {
       "enum": [
        "claude-sonnet-4-5",
        "claude-sonnet-4-6",
        "claude-sonnet-5",
        "deepseek-v4-flash",
        "deepseek-v4-pro",
        "gemini-3-1-pro-preview",
        "gemini-3-5-flash",
        "grok-4-20",
        "grok-4-20-multi-agent",
        "grok-4-3",
        "kimi-k2-6",
        "kimi-k2-7-code",
        "openai-gpt-4o-2024-11-20",
        "openai-gpt-52",
        "openai-gpt-52-codex",
        "openai-gpt-53-codex",
        "openai-gpt-54",
        "openai-gpt-54-mini",
        "qwen-3-6-plus",
        "qwen-3-7-max",
        "qwen-3-7-plus",
        "qwen3-5-397b-a17b",
        "qwen3-coder-480b-a35b-instruct-turbo",
        "z-ai-glm-5-turbo",
        "z-ai-glm-5v-turbo",
        "zai-org-glm-5-1"
       ],
       "type": "string"
      },
      "tools": {
       "type": "array"
      },
      "stream": {
       "type": "boolean"
      },
      "messages": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "role",
         "content"
        ],
        "properties": {
         "role": {
          "enum": [
           "system",
           "user",
           "assistant",
           "tool"
          ],
          "type": "string"
         },
         "content": {
          "type": "string"
         }
        }
       },
       "description": "OpenAI-style chat messages"
      },
      "max_tokens": {
       "type": "integer"
      },
      "temperature": {
       "type": "number"
      },
      "tool_choice": {}
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string"
      },
      "model
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-dellbot-win-27afcf99/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.dellbot.win](https://www.zero.xyz/host/x402.dellbot.win/llms.txt)
