Locus public pay-per-use API
Locus public pay-per-use API
Answeringour last check, 2026-09-24
1 of 1checks answered this week
569 msmedian answer time
$0.014747listed price per call
$0.014747price 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://mistral.x402.stage.paywithlocus.com/mistral/chat
| Category | Everything else |
|---|---|
| Provider host | mistral.x402.stage.paywithlocus.com |
| Networks | eip155:8453 |
| Payment schemes | upto |
| 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.014747 | 569 ms |
Example input (from the provider)
{
"body": {
"max_tokens": 1,
"messages": [
{
"content": "Hello from x402",
"role": "user"
}
],
"model": "mistral-medium-3-5"
},
"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": {
"additionalProperties": true,
"properties": {
"max_tokens": {
"description": "Maximum output tokens. Required to bound metered x402 authorization.",
"type": "number"
},
"messages": {
"description": "Conversation messages array",
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
},
"model": {
"description": "Model ID (e.g. \"mistral-medium-3-5\", \"mistral-small-2603\", \"mistral-large-2512\", \"ministral-14b-2512\", \"codestral-latest\")",
"type": "string"
},
"response_format": {
"additionalProperties": true,
"description": "Output format (json_object, json_schema, text)",
"type": "object"
},
"seed": {
"description": "Deterministic sampling seed",
"type": "number"
},
"stop": {
"description": "Stop sequences",
"items": {
"type": "string"
},
"type": "array"
},
"temperature": {
"description": "Sampling temperature (0-2)",
"type": "number"
},
"tool_choice": {
"additionalProperties": true,
"description": "Tool selection control",
"type": "object"
},
"tools": {
"description": "Tool/function definitions",
"items": {
"type": "string"
},
"type": "array"
},
"top_p": {
"description": "Nucleus sampling (0-1)",
"type": "number"
}
},
"required": [
"model",
"messages",
"max_tokens"
],
"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"
}