Frontier chat completions via Telnyx Inference (MiniMax M2
Frontier chat completions via Telnyx Inference (MiniMax M2.7). OpenAI-compatible. $0.002856 USDC per call — no API key, no signup, pay per request.
2856 (raw units)
price
90
calls / 30d
2
unique payers
2026-09-14
updated
Provider
x402.telnyx.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x19a78B27a28eD93C3c914878bde7f2f843AfAEa8",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "2856",
"maxTimeoutSeconds": 300
},
{
"scheme": "upto",
"network": "eip155:8453",
"payTo": "0x19a78B27a28eD93C3c914878bde7f2f843AfAEa8",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "24892",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"max_tokens": 64,
"messages": [
{
"content": "Say hello in one short sentence.",
"role": "user"
}
],
"model": "MiniMaxAI/MiniMax-M2.7"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"choices": [
{
"finish_reason": "stop",
"index": 0,
"message": {
"content": "Hello!",
"role": "assistant"
}
}
],
"id": "chatcmpl-xxx",
"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": {
"maximum": 512,
"minimum": 1,
"type": "integer"
},
"messages": {
"description": "OpenAI-style chat messages.",
"items": {
"properties": {
"content": {
"maxLength": 8000,
"type": "string"
},
"role": {
"enum": [
"system",
"user",
"assistant",
"tool"
],
"type": "string"
}
},
"required": [
"role",
"content"
],
"type": "object"
},
"maxItems": 32,
"type": "array"
},
"model": {
"const": "MiniMaxAI/MiniMax-M2.7",
"description": "Model identifier; fixed to MiniMaxAI/MiniMax-M2.7 on this route.",
"type": "string"
},
"n": {
"const": 1,
"description": "Fixed to one completion per paid call.",
"type": "integer"
},
"temperature": {
"maximum": 2,
"minimum": 0,
"type": "number"
},
"tools": {
"items": {
"type": "object"
},
"maxItems": 16,
"type": "array"
}
},
"required": [
"model",
"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"
}
}
}Use it
curl
curl "https://x402.telnyx.com/v1/chat/completions" # -> 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.telnyx.com/v1/chat/completions");
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.telnyx.com/v1/chat/completions")
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/6573.json, and this resource appears in /discovery/resources and /discovery/search.