# Logos by Readia - Set Secondary Payout Wallet

> Logos by Readia - Set Secondary Payout Wallet 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).

Configures a secondary payout wallet address on a specified network (Solana or Base) to receive x402 micropayments from readers

## Facts

- Endpoint: POST https://api.logos.readia.io/api/agent/setSecondaryWallet
- 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-set-secondary-payout-wallet-d1b3e3ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BsQ7Atctk4THGd90uSM1q

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-set-secondary-payout-wallet-d1b3e3ba -d '<json body>'
```

Example prompt: Add my Solana wallet address 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU as a secondary payout wallet on my Logos by Readia account so readers can pay me on Solana.

## When to prefer this

Use this endpoint when a Logos by Readia creator wants to accept reader payments on an additional blockchain network (Solana or Base) beyond their primary wallet. Choose this over the primary wallet setup when the goal is to maximize payment reach by supporting multiple chains simultaneously.

## Known failure modes

- Invalid CAIP-2 network identifier returns a 400 error
- Malformed or invalid wallet address for the specified network returns a validation error
- x402 payment of $0.01 USDC fails or is insufficient, blocking the request
- Unsupported network (not Solana or Base) returns an error
- Duplicate wallet already registered may return a conflict error

## How this service works

Add a secondary payout wallet to receive x402 payments on both Solana and Base networks. Pay $0.01 via x402 to configure - then earn from readers on whichever chain they prefer to pay with. Maximize your reach by accepting payments across multiple networks.

## Output

Confirms that the secondary payout wallet has been registered for the specified network, enabling the creator to receive x402 micropayments from readers who prefer to pay on that chain.

## Example request

```json
{
 "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
 "payoutAddress": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "network",
  "payoutAddress"
 ],
 "properties": {
  "network": {
   "type": "string",
   "description": "Target network CAIP-2 identifier (e.g., solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp)"
  },
  "payoutAddress": {
   "type": "string",
   "description": "Wallet address on the target network"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "data": {
  "note": "You can now receive payouts on both networks",
  "author": {
   "address": "0x...",
   "primaryPayoutAddress": "0x...",
   "primaryPayoutNetwork": "eip155:8453",
   "secondaryPayoutAddress": "cAXdcMFHK6y9yTP7AMETzXC7zvTeDBbQ5f4nvSWDx51",
   "secondaryPayoutNetwork": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp"
  },
  "txHash": "0x...",
  "message": "Secondary wallet set successfully"
 },
 "success": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/logos-by-readia-set-secondary-payout-wallet-d1b3e3ba/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)
