OpenAI-compatible chat completion
OpenAI-compatible chat completion. Pay per call, no account and no API key.
Answers HTTP 404 without x402 payment termsour last check, 2026-09-24
0 of 1checks answered this week
n/amedian answer time
$0.01listed 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://phantom.codes/api/v1/x402/chat/completions
| Category | Everything else |
|---|---|
| Provider host | phantom.codes |
| Networks | eip155:84532, solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1 |
| 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-24 | no x402 terms | 404 | 1609 ms |
Example input (from the provider)
{
"body": {
"messages": [
{
"content": "Say hello in one word.",
"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": {
"description": "Maximum tokens to generate (capped at 2000).",
"maximum": 2000,
"minimum": 1,
"type": "integer"
},
"messages": {
"description": "The messages to generate chat completions for.",
"items": {
"properties": {
"content": {
"type": "string"
},
"role": {
"enum": [
"system",
"user",
"assistant"
],
"type": "string"
}
},
"required": [
"role",
"content"
],
"type": "object"
},
"minItems": 1,
"type": "array"
},
"model": {
"description": "The model to use. Pinned to deepseek/deepseek-v3.2 on this rail.",
"enum": [
"deepseek/deepseek-v3.2"
],
"type": "string"
},
"stream": {
"description": "Streaming is not supported on this rail; must be false or omitted.",
"enum": [
false
],
"type": "boolean"
},
"temperature": {
"description": "Sampling temperature.",
"maximum": 2,
"minimum": 0,
"type": "number"
}
},
"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"
}