Use when an agent wants an OpenAI-compatible chat completion paid per call inste
Use when an agent wants an OpenAI-compatible chat completion paid per call instead of an API key: POST the usual {model, messages, max_tokens, temperature}; model "fast" (default) runs Llama 3.1 8B, "smart" runs Llama 3.3 70B. Returns the standard chat.completion object. 0.002 USD per call.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
232 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://odds.rjhsignaltech.workers.dev/v1/chat/completions
| Category | Everything else |
|---|---|
| Provider host | odds.rjhsignaltech.workers.dev |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 0 from 0 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 | 232 ms |
Example input (from the provider)
{
"body": {
"max_tokens": 64,
"messages": [
{
"content": "Give me three words that describe the Base network.",
"role": "user"
}
],
"model": "fast"
},
"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"
],
"type": "string"
}
},
"required": [
"role",
"content"
],
"type": "object"
},
"type": "array"
},
"model": {
"description": "\"fast\" (Llama 3.1 8B, default) or \"smart\" (Llama 3.3 70B)",
"type": "string"
},
"temperature": {
"maximum": 2,
"minimum": 0,
"type": "number"
}
},
"required": [
"messages"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"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": {
"const": "json",
"type": "string"
}
},
"type": "object"
}
}
}