# x402 Life Advice API

> x402 Life Advice API is a paid API for AI agents from x402lifeadvice.vercel.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns one piece of thoughtful, AI-generated life advice per paid GET request via the x402 micropayment protocol

## Facts

- Endpoint: GET https://x402lifeadvice.vercel.app/api/life-advice
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-life-advice-api-c494c9f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YnQxUZrj6k8HJu80B4oWx

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-life-advice-api-c494c9f3
```

Example prompt: Give me one thoughtful piece of life advice right now — something meaningful and worth reflecting on.

## When to prefer this

Use this endpoint when an agent or user wants a single on-demand piece of life wisdom, reflection, or motivational guidance with a negligible per-call cost via x402 micropayments. Ideal for apps embedding pay-per-use AI-generated advice, daily wisdom widgets, or experimentation with x402 protocol monetization.

## Known failure modes

- Payment not included or invalid x402 header — 402 Payment Required response
- Malformed request or unsupported method — 400 or 405 error
- Service temporarily unavailable — 500 or timeout
- Advice may vary in tone and quality across calls since output is generative and non-deterministic

## How this service works

Get one piece of thoughtful life advice, paid per request over x402.

## Output

A single piece of thoughtful, AI-generated life advice returned as text, delivered after a $0.001 USDC micropayment is processed 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/x402-life-advice-api-c494c9f3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402lifeadvice.vercel.app](https://www.zero.xyz/host/x402lifeadvice.vercel.app/llms.txt)
