One LLM generation on a rented GPU, priced per request
One LLM generation on a rented GPU, priced per request.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
887 msmedian answer time
$0.003192listed price per call
$0.003192price 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://api.prismnetwork.tech/inference/v1/inference
| Category | Everything else |
|---|---|
| Provider host | api.prismnetwork.tech |
| Networks | eip155:4663, eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 9 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.003192 | 887 ms |
Example input (from the provider)
{
"body": {
"model": "llama3.2:3b",
"options": {
"num_predict": 64
},
"prompt": "Explain metered GPU compute in one sentence."
},
"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": {
"model": {
"description": "Which model answers.",
"enum": [
"llama3.2:3b",
"llama3.1:8b"
],
"type": "string"
},
"options": {
"description": "Generation options. The price scales with the output cap.",
"properties": {
"num_predict": {
"description": "Maximum output tokens. Lower is cheaper.",
"maximum": 1024,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
},
"prompt": {
"description": "The prompt, up to 32 KiB.",
"minLength": 1,
"type": "string"
}
},
"required": [
"model",
"prompt"
],
"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": {
"lease_id": {
"description": "The GPU lease that served it.",
"type": [
"integer",
"null"
]
},
"model": {
"type": "string"
},
"response": {
"description": "The generated text.",
"type": "string"
},
"usage": {
"properties": {
"completion_tokens": {
"type": [
"integer",
"null"
]
},
"duration_ms": {
"type": [
"integer",
"null"
]
},
"prompt_tokens": {
"type": [
"integer",
"null"
]
}
},
"type": "object"
}
},
"required": [
"model",
"response"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}