# EruditePay Mainnet Paid Resource

> EruditePay Mainnet Paid Resource is a paid API for AI agents from x402.eruditepay.com, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Returns a paid resource response after processing a real x402 micropayment on Base mainnet using USDC

## Facts

- Endpoint: GET https://x402.eruditepay.com/paid-resource-mainnet
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-eruditepay-com-deb175d5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_duTJB4D-tv7oFw2MZPpf9

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-eruditepay-com-deb175d5
```

Example prompt: Fetch the EruditePay paid resource on Base mainnet — it costs $0.01 USDC per call via x402 and I want to verify a real mainnet payment goes through.

## When to prefer this

Use this endpoint when you need to test or demonstrate a real, live x402 micropayment flow on Base mainnet using USDC, or when you need to access a production-gated resource requiring a $0.01 USDC payment. Prefer this over testnet variants when you need to validate actual on-chain financial transactions.

## Known failure modes

- Insufficient USDC balance on Base mainnet — payment cannot be completed
- Invalid or missing x402 payment header — 402 Payment Required returned
- Network error on Base mainnet — transaction fails to confirm
- Wrong network (testnet vs mainnet) — payment rejected
- Expired payment authorization — request must be retried with fresh payment

## How this service works

EruditePay mainnet resource — real x402 payment on Base mainnet

## Output

The agent receives the paid resource response body after the x402 payment of $0.01 USDC on Base mainnet is successfully processed, confirming the micropayment was executed and the gated content was unlocked.

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