Chat completions via Telnyx Inference (google/gemma-2b-it)
Chat completions via Telnyx Inference (google/gemma-2b-it). OpenAI-compatible. $0.002 USDC per call.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
665 msmedian answer time
$0.002listed price per call
$0.002price 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://x402.telnyx.com/v1/chat/completions/_t/gemma-2b
| Category | Everything else |
|---|---|
| Provider host | x402.telnyx.com |
| Networks | 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-24 | valid payment request | 402 | $0.002 | 665 ms |
Example input (from the provider)
{
"body": {
"max_tokens": 64,
"messages": [
{
"content": "Say hello in one short sentence.",
"role": "user"
}
],
"model": "google/gemma-2b-it"
},
"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": 256,
"minimum": 1,
"type": "integer"
},
"messages": {
"description": "OpenAI-style chat messages.",
"items": {
"properties": {
"content": {
"maxLength": 2000,
"type": "string"
},
"role": {
"enum": [
"system",
"user",
"assistant",
"tool"
],
"type": "string"
}
},
"required": [
"role",
"content"
],
"type": "object"
},
"maxItems": 32,
"type": "array"
},
"model": {
"const": "google/gemma-2b-it",
"description": "Model identifier; fixed to google/gemma-2b-it 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"
}