# legalfournier.com x402 Payment Test

> legalfournier.com x402 Payment Test is a paid API for AI agents from legalfournier.com, paid per call via x402, $1/call, status unknown (last checked 2026-09-14).

Settles a real $1 USDC payment on Base mainnet via x402 protocol and returns an onchain receipt

## Facts

- Endpoint: GET https://legalfournier.com/api/commerce/x402/test
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/legalfournier-com-x402-payment-test-b8d6e2c9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8QQ_ow01Z2YaAK0DPbmaH

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 legalfournier-com-x402-payment-test-b8d6e2c9
```

Example prompt: Run a real $1 USDC test payment on Base mainnet using x402 and give me back the onchain receipt so I can confirm it settled.

## When to prefer this

Use this endpoint when you need to verify that x402 HTTP payment infrastructure works end-to-end with a real $1 USDC settlement on Base mainnet. It is ideal for integration testing, agent payment capability demos, or confirming that a wallet and x402 client are correctly configured before going live. Prefer this over mock or testnet endpoints when you need real onchain proof.

## Known failure modes

- Insufficient USDC balance in wallet — payment cannot be settled
- Invalid or missing x402 payment header — 402 Payment Required returned
- Network congestion on Base causing delayed confirmation
- Wallet not configured for Base mainnet — wrong chain error
- Payment amount mismatch — endpoint expects exactly $1 USDC

## How this service works

Settle a real $1 USDC payment on Base mainnet and return an onchain receipt.

## Output

An onchain receipt confirming that a real $1 USDC payment was settled on Base mainnet, including transaction details such as a transaction hash or block confirmation data.

## 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/legalfournier-com-x402-payment-test-b8d6e2c9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from legalfournier.com](https://www.zero.xyz/host/legalfournier.com/llms.txt)
