# x402 AI APIs – Pokemon Auth Chat Completion

> x402 AI APIs – Pokemon Auth Chat Completion is a paid API for AI agents from x402-ai-peach.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

A pay-per-call chat completion endpoint gated by x402 micropayments, specialized for Pokemon-authenticated AI conversations

## Facts

- Endpoint: POST https://x402-ai-peach.vercel.app/api/pokemon-auth
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-ai-apis-pokemon-auth-chat-completion-db4cf349
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wZ11LeB3HeDtUh3BPh-Ve

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 x402-ai-apis-pokemon-auth-chat-completion-db4cf349 -d '<json body>'
```

Example prompt: Chat with the Pokemon-auth x402 AI endpoint: send the message history '[{"role":"user","content":"What is Pikachu?"}]' with a max of 200 tokens, temperature 0.7, and streaming disabled.

## When to prefer this

Choose this endpoint when you need a pay-per-call AI chat completion API gated by x402 USDC micropayments, especially in automated agent pipelines where you want fine-grained per-request payment control without a subscription. The Pokemon-auth variant may offer a specific authentication or access tier distinct from other sibling endpoints on the same host.

## Known failure modes

- Payment not provided or insufficient USDC balance — 402 Payment Required response
- Messages array missing or malformed — 400 Bad Request
- Temperature or max_tokens out of acceptable range — 400 validation error
- Upstream AI model timeout — 503 Service Unavailable
- x402 facilitator or payment network unavailable — payment processing failure

## How this service works

Paid AI API endpoints via x402 micropayments

## Output

Returns a JSON object containing a response ID and a choices array, where each choice includes an assistant message with a role and content string representing the AI-generated reply.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "messages"
 ],
 "properties": {
  "stream": {
   "type": "boolean",
   "description": "Stream response"
  },
  "messages": {
   "type": "array",
   "description": "Chat messages array"
  },
  "max_tokens": {
   "type": "integer",
   "description": "Max tokens"
  },
  "temperature": {
   "type": "number",
   "description": "Temperature"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "string",
   "description": "Response ID"
  },
  "choices": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "message": {
      "type": "object",
      "properties": {
       "role": {
        "type": "string"
       },
       "content": {
        "type": "string"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-ai-apis-pokemon-auth-chat-completion-db4cf349/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-ai-peach.vercel.app](https://www.zero.xyz/host/x402-ai-peach.vercel.app/llms.txt)
