ToolAssay

OpenAI-style chat completion from Qwen3-32B model

OpenAI-style chat completion from Qwen3-32B model. POST {messages: [{role, content}], max_tokens <= 1024}; returns the assistant message, the model, and its token usage. Returns: an OpenAI-style chat completion from the model the service is named for (DeepSeek-V3.2, Qwen3-32B or Llama-3.1-8B-Instruct): POST {messages: [{role, content}], max_tokens <= 1024}; returns the assistant message, the model, and its token usage. Messages up to 16,000 characters in total.

Answers HTTP 404 without x402 payment termsour last check, 2026-09-24
0 of 1checks answered this week
n/amedian answer time
$0.003listed price per call
n/aprice it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://ari001.tailb4ac3a.ts.net/v1/ventures/smartmoney_trading_activities_api/llm_chat_qwen3_32b

CategoryMarket data
Provider hostari001.tailb4ac3a.ts.net
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days0 from 0 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 no x402 terms 404 585 ms

Example input (from the provider)

{
  "body": {
    "max_tokens": 32,
    "messages": [
      {
        "content": "Say hello in five words.",
        "role": "user"
      }
    ]
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "properties": {
            "max_tokens": {
              "maximum": 1024,
              "minimum": 1,
              "type": "integer"
            },
            "messages": {
              "items": {
                "properties": {
                  "content": {
                    "type": "string"
                  },
                  "role": {
                    "enum": [
                      "system",
                      "user",
                      "assistant"
                    ]
                  }
                },
                "required": [
                  "role",
                  "content"
                ],
                "type": "object"
              },
              "maxItems": 32,
              "minItems": 1,
              "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": {
            "error": {
              "description": "present when ok is false",
              "type": "string"
            },
            "message": {
              "properties": {
                "content": {
                  "type": "string"
                },
                "role": {
                  "const": "assistant"
                }
              },
              "type": "object"
            },
            "method": {
              "type": "string"
            },
            "model": {
              "type": "string"
            },
            "ok": {
              "type": "boolean"
            },
            "service": {
              "type": "string"
            },
            "usage": {
              "properties": {
                "completion_tokens": {
                  "type": [
                    "integer",
                    "null"
                  ]
                },
                "prompt_tokens": {
                  "type": [
                    "integer",
                    "null"
                  ]
                }
              },
              "type": "object"
            }
          },
          "required": [
            "ok",
            "service"
          ],
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON