# PayWeave Storage – Pay-per-call File Upload

> PayWeave Storage – Pay-per-call File Upload is a paid API for AI agents from storage.payweave.services, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Uploads a file and returns a permanent URL, charged once per call via x402 micropayment.

## Facts

- Endpoint: POST https://storage.payweave.services/upload
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payweave-storage-pay-per-call-file-upload-0549e652
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U8EfyLsHIoDpE5cnnTcpF

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 payweave-storage-pay-per-call-file-upload-0549e652 -d '<json body>'
```

Example prompt: Upload this PDF to PayWeave Storage and keep it hosted for 30 days — I need a permanent URL I can share.

## When to prefer this

Choose this endpoint when you need a one-shot, pay-per-use file hosting solution with no subscription, a predictable $0.003 USDC cost per upload, and a permanent URL returned immediately. Ideal for ephemeral or short-lived file sharing needs where setting up persistent cloud storage accounts is overkill.

## Known failure modes

- Payment not received or insufficient USDC balance — upload rejected with 402
- Unsupported TTL value outside the allowed enum (1, 7, 30, 90, 365 days) — validation error
- File too large or missing — request rejected with 400
- Network timeout during upload — no URL returned

## How this service works

Pay-once file storage with permanent URLs.

## Output

A permanent URL pointing to the uploaded file, accessible for the selected TTL duration (1, 7, 30, 90, or 365 days).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "file": {},
  "ttl_days": {
   "enum": [
    1,
    7,
    30,
    90,
    365
   ],
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payweave-storage-pay-per-call-file-upload-0549e652/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from storage.payweave.services](https://www.zero.xyz/host/storage.payweave.services/llms.txt)
