# pagos.andreax.dev LLM Inference (Kimi/DeepSeek)

> pagos.andreax.dev LLM Inference (Kimi/DeepSeek) is a paid API for AI agents from pagos.andreax.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Sends a text prompt to a Kimi or DeepSeek LLM and returns the model's generated response, billed per call via x402.

## Facts

- Endpoint: GET https://pagos.andreax.dev/api/taller/peaje/inferencia
- 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/pagos-andreax-dev-llm-inference-kimi-deepseek-e81cbadd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6wxivsxY3jC6XXRFGVu-_

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 pagos-andreax-dev-llm-inference-kimi-deepseek-e81cbadd
```

Example prompt: Ask the LLM inference endpoint: 'What are the top three reasons why startups fail?' and give me back the model's answer.

## When to prefer this

Choose this endpoint when you need pay-per-call LLM inference without managing API keys, subscriptions, or model infrastructure. It is ideal for agentic workflows that need occasional or bursty LLM calls billed in USDC micro-payments via x402. Prefer it over self-hosted or subscription LLMs when cost predictability per call matters more than volume discounts.

## Known failure modes

- Missing required 'input' query parameter returns a validation error
- Payment not provided or insufficient USDC balance causes x402 payment-required error
- Model backend (Kimi/DeepSeek) unavailable leads to a 5xx error or timeout
- Malformed request schema (wrong HTTP method or missing type/method fields) returns 400
- Very long prompts may be truncated or rejected depending on model context limits

## How this service works

Devuelve la respuesta de un LLM (Kimi/DeepSeek) a tu consulta. Úsalo para inferencia de propósito general pagada por llamada cuando un agente necesita una respuesta de modelo. input=tu consulta en texto.

## Output

A plain-text response generated by the underlying LLM (Kimi or DeepSeek) in answer to the submitted prompt. The response is returned directly from the model and billed at $0.005 USDC per call via x402.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "Consulta/prompt para el modelo"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pagos-andreax-dev-llm-inference-kimi-deepseek-e81cbadd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pagos.andreax.dev](https://www.zero.xyz/host/pagos.andreax.dev/llms.txt)
