OpenAI-style chat completion from DeepSeek-V3.2 model
OpenAI-style chat completion from DeepSeek-V3.2 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.
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/llm_chat_api/deepseek_v3_2
| Category | Market data |
|---|---|
| Provider host | ari001.tailb4ac3a.ts.net |
| Networks | eip155:137, eip155:42161, eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-25 | valid payment request | 402 | $0.003 | 669 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"
}