# Lotus Network Patron Pledge — Supporter Tier

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

Registers a wallet address as a Lotus Network 'Supporter' patron, returning a time-stamped pledge record with tier label and expiry date.

## Facts

- Endpoint: POST https://lotusnetworkapi.com/api/v1/patron/pledge/supporter
- Price: $5/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-supporter-tier-d96d532d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jxYKLalFTHsUBSRBzXGYZ

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-supporter-tier-d96d532d -d '<json body>'
```

Example prompt: Register my wallet 0xABC123... as a Lotus Network Supporter patron — pledge the $5 USDC fee and get back my tier confirmation and expiry date.

## When to prefer this

Use this endpoint when you need to register or activate a wallet as a Lotus Network Supporter patron, specifically for unlocking patron-gated access or recording a time-bounded pledge. This is a write operation that creates a membership record — not for querying existing status or accessing media generation services directly.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Insufficient USDC balance for the $5 x402 payment causes payment failure
- Already-pledged wallet may return a duplicate or conflict response
- Network/chain congestion may delay settlement confirmation
- Missing walletAddress field in request body returns a validation error

## 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. 'supporter'), tierLabel ('Lotus Supporter'), wallet address, success boolean, pledgedAt ISO timestamp, and expiresAt ISO timestamp indicating when the supporter status expires.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lotus-network-patron-pledge-supporter-tier-d96d532d/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)
