# Relaystation Storage Drop

> Relaystation Storage Drop is a paid API for AI agents from api.relaystation.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Upload a file and receive a durable, shareable public URL — no account or signup required, billed per-call via crypto wallet.

## Facts

- Endpoint: POST https://api.relaystation.ai/v1/storage/drop
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/relaystation-storage-drop-d47c139a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W2T5BXTsO1rM-hvaO1nSW

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 relaystation-storage-drop-d47c139a -d '<json body>'
```

Example prompt: Upload this PDF I just generated and give me a permanent shareable link — no account needed, just charge my wallet.

## When to prefer this

Choose this endpoint when your agent needs to quickly persist and share a file without creating an account or managing cloud storage credentials. Ideal for agentic pipelines that generate output (PDFs, images, data exports) and need a shareable URL in a single call, billed per-use via crypto wallet on the x402 protocol. Best when you want wallet-as-identity rather than OAuth or API keys.

## Known failure modes

- Insufficient wallet balance — payment below $0.01 USDC minimum results in rejection
- File size exceeds tier limit — oversized files may be rejected or billed at a higher tier
- Unsupported MIME type — certain file formats may not be accepted
- Network timeout during upload — large files may time out on slow connections
- Invalid or missing file body — empty request returns a 400-level error

## How this service works

Store a file and get a durable, shareable URL — no account, no signup; the wallet is the identity. From $0.001; tiers by size, lifetime, egress. Part of Relaystation: 155 agent tools on one balance — storage, e-sign, KYC, PDF/data/media, sub-cent LLM. relaystation.ai

## Output

Returns a durable, publicly accessible URL pointing to the uploaded file, along with a storage confirmation and file identifier. The URL is permanent and shareable without requiring recipients to authenticate.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/relaystation-storage-drop-d47c139a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.relaystation.ai](https://www.zero.xyz/host/api.relaystation.ai/llms.txt)
