# eudata402 Multi-Model LLM Gateway

> eudata402 Multi-Model LLM Gateway is a paid API for AI agents from x402-seller-202595743428.europe-west1.run.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Routes prompts to any of 60+ budget open-source language models (DeepSeek, Llama, Qwen, Gemma, Mistral, Phi, etc.) at a flat per-call price, returning generated text and token usage.

## Facts

- Endpoint: GET https://x402-seller-202595743428.europe-west1.run.app/chat
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/eudata402-multi-model-llm-gateway-70b91886
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tcPPum7_SUs3mHUF1WY6b

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability eudata402-multi-model-llm-gateway-70b91886
```

Example prompt: Use the budget LLM gateway to generate a short professional bio for me — pick Llama 3 as the model, keep it under 200 tokens, and use a temperature of 0.7.

## When to prefer this

Choose this endpoint when you need affordable, keyless access to a wide variety of open-source LLMs (DeepSeek, Llama, Qwen, Gemma, Mistral, Phi) at a flat $0.005/call price without managing individual provider API keys. Ideal for agents that need text generation as a sub-task, want to experiment with multiple budget models, or require reasoning-capable open-source models without paying premium closed-model prices.

## Known failure modes

- Invalid model ID returns an error listing available models
- Prompt or messages field missing causes a 400 bad request
- max_tokens exceeding 1500 is rejected with a validation error
- Overloaded model or gateway timeout returns a 5xx without charging
- Unsupported temperature value outside 0–1 range causes validation failure

## How this service works

Flat-price multi-model LLM gateway: pick any of 60+ budget models (DeepSeek, Llama, Qwen, Gemma, Mistral, Phi, GPT-OSS...) at one price — see GET /models. POST {prompt|messages, model?, max_tokens?, temperature?}. Returns {model, text, usage}. Default DeepSeek V4 Flash. Failed/over-tier requests are never charged.

## Output

Returns a JSON object with: `model` (the model ID that handled the request), `text` (the generated completion or chat reply), and `usage` (token counts for prompt, completion, and total). Failed or over-tier requests are never charged.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "model": {
   "type": "string",
   "description": "Any budget model id from GET /models (default DeepSeek V4 Flash)"
  },
  "prompt": {
   "type": "string",
   "description": "User prompt (alternative: messages[])"
  },
  "messages": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "role",
     "content"
    ],
    "properties": {
     "role": {
      "type": "string"
     },
     "content": {
      "type": "string"
     }
    }
   },
   "description": "Chat messages (alternative to prompt)"
  },
  "reasoning": {
   "type": "boolean",
   "description": "Enable model reasoning (slower, costlier; default false)"
  },
  "max_tokens": {
   "type": "integer",
   "maximum": 1500,
   "minimum": 1
  },
  "temperature": {
   "type": "number",
   "maximum": 1,
   "minimum": 0
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/eudata402-multi-model-llm-gateway-70b91886/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-seller-202595743428.europe-west1.run.app](https://www.zero.xyz/host/x402-seller-202595743428.europe-west1.run.app/llms.txt)
