# Ozmium Prop Desk Treasury Tip

> Ozmium Prop Desk Treasury Tip is a paid API for AI agents from ozmium.org, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Send a tip (ETH or ERC-20 token) to the Ozmium shared Prop desk treasury, funding the Prop Flywheel that burns OZ tokens and funds the desk.

## Facts

- Endpoint: POST https://ozmium.org/v1/tx/tip
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ozmium-prop-desk-treasury-tip-0fe5bc35
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wZncy1IpqcyCslzXsewEh

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 ozmium-prop-desk-treasury-tip-0fe5bc35 -d '<json body>'
```

Example prompt: Tip the Ozmium Prop desk treasury 1000000000000000 wei worth of ETH to support the Prop Flywheel.

## When to prefer this

Use this endpoint when you specifically want to tip or contribute funds to the Ozmium shared Prop desk treasury to participate in the OZ Prop Flywheel (swap fee burns / desk funding), rather than performing a general token transfer to an arbitrary recipient or executing a swap.

## Known failure modes

- Invalid or missing amount field — returns 400 or validation error
- Token address not recognized or malformed — returns error
- Network issues reaching ozmium.org — connection timeout
- Insufficient funds in wallet to cover specified amount — broadcast will fail downstream
- Amount specified as non-atomic (decimal) value causing precision errors

## How this service works

Tip the shared Ozmium Prop desk treasury (funds the Prop Flywheel- swap fees burn OZ / fund the desk). A plain transfer to the fixed treasury address; nobody custodies your funds. POST /v1/tx/tip { amount (atomic), token? (omit / native sentinel = ETH) }. Returns { to, data, value } steps.

## Output

Returns a transaction payload with fields: `to` (the fixed treasury address), `data` (calldata for the transfer), and `value` (ETH amount in atomic units) — ready to sign and broadcast on Base mainnet.

## Request schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ozmium-prop-desk-treasury-tip-0fe5bc35/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ozmium.org](https://www.zero.xyz/host/ozmium.org/llms.txt)
