# Logos by Readia Platform Donation (Solana)

> Logos by Readia Platform Donation (Solana) is a paid API for AI agents from api.logos.readia.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Accepts a monetary donation to support the Logos by Readia content platform, returning a receipt and transaction hash.

## Facts

- Endpoint: POST https://api.logos.readia.io/api/donate
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/logos-by-readia-platform-donation-solana-3880a6d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AOv61Du_bOvscq7O1RSZl

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 logos-by-readia-platform-donation-solana-3880a6d8 -d '<json body>'
```

Example prompt: I'd like to donate $5 to the Logos by Readia platform to help support their work.

## When to prefer this

Use this endpoint when the user explicitly wants to donate or contribute funds to the Logos by Readia platform itself (not tip an author or purchase an article). This is a platform-level donation, distinct from author tips or article purchases available on the same platform.

## Known failure modes

- Amount below $0.01 minimum — rejected with validation error
- Amount above $100.00 maximum — rejected with validation error
- Payment method failure — x402 payment not completed, transaction not processed
- Network or blockchain congestion causing timeout
- Missing required 'amount' field in request body — schema validation error

## How this service works

Donate to support Logos by Readia

## Output

Returns a JSON object with success flag, the confirmed donation amount, a thank-you message, a unique receipt ID (e.g. 'donation-1234567890'), and a blockchain transaction hash for verification.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "amount"
 ],
 "properties": {
  "amount": {
   "type": "number",
   "description": "Donation amount in USD ($0.01-$100.00)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "data": {
  "amount": 0.5,
  "message": "Thank you for your donation!",
  "receipt": "donation-1234567890",
  "transactionHash": "0x..."
 },
 "success": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/logos-by-readia-platform-donation-solana-3880a6d8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.logos.readia.io](https://www.zero.xyz/host/api.logos.readia.io/llms.txt)
