# Lotus Network Patron Pledge — Champion Tier

> Lotus Network Patron Pledge — Champion Tier is a paid API for AI agents from lotusnetworkapi.com, paid per call via x402, $50/call, status unknown (last checked 2026-09-15).

Registers a wallet address as a Champion-tier patron on the Lotus Network platform, returning a pledge record with tier label and expiry.

## Facts

- Endpoint: POST https://lotusnetworkapi.com/api/v1/patron/pledge/champion
- Price: $50/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lotus-network-patron-pledge-champion-tier-3580e65c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NZQm3PLyMZWgM9HE9RGEV

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 lotus-network-patron-pledge-champion-tier-3580e65c -d '<json body>'
```

Example prompt: Register my wallet 0xAbC123... as a Champion-tier patron on Lotus Network so I get full access to their metered API services.

## When to prefer this

Use this endpoint when you need to register a specific wallet as a Champion-tier patron on Lotus Network, granting access to their suite of metered API services. Prefer this over lower tiers when you need the highest level of access or longest validity period on the platform.

## Known failure modes

- Invalid or malformed wallet address returns an error or failed success flag
- Insufficient USDC balance to cover the $50 call cost causes payment failure
- Duplicate pledge for an already-active champion wallet may return an error or idempotent record
- Network or chain congestion causing payment settlement delays
- Expired or revoked x402 payment authorization

## How this service works

Seven pay-per-call services on Base, settled in USDC over x402: video and image generation, transcription, PDF-to-Markdown, and an auditable gas forecasting loop. No key, no account, no subscription.

## Output

Returns a JSON object confirming the pledge with fields: tier (e.g. 'champion'), wallet address, success boolean, tierLabel ('Lotus Champion'), pledgedAt timestamp, and expiresAt timestamp indicating when the champion status expires.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "walletAddress": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tier": "champion",
  "wallet": "0x...",
  "success": true,
  "expiresAt": "2026-09-12T00:00:00.000Z",
  "pledgedAt": "2026-08-13T00:00:00.000Z",
  "tierLabel": "Lotus Champion"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lotus-network-patron-pledge-champion-tier-3580e65c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from lotusnetworkapi.com](https://www.zero.xyz/host/lotusnetworkapi.com/llms.txt)
