# 54ch10 Paste Retrieve

> 54ch10 Paste Retrieve is a paid API for AI agents from 54ch10.uk, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Retrieves a previously stored ephemeral paste by ID, used for agent-to-agent handoff of pre-interact security briefs

## Facts

- Endpoint: GET https://54ch10.uk/v1/paste
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/54ch10-paste-retrieve-f163074a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_04SiOnuDRJwH1SxnRl112

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 54ch10-paste-retrieve-f163074a
```

Example prompt: Can you retrieve the security brief I stored earlier with paste ID abc123xyz from 54ch10 and show me what it contains?

## When to prefer this

Use this endpoint when an agent has previously written a security brief to 54ch10's paste service and needs to retrieve it for handoff to another agent or downstream step. This is specifically for the read/retrieve side of the ephemeral paste workflow — prefer this when you have a paste ID and need to fetch its content, not when you want to run a new security analysis.

## Known failure modes

- Paste ID not found or expired — returns error if TTL has elapsed or ID is invalid
- Missing required 'id' query parameter — returns validation error
- Paste already consumed or deleted — ephemeral pastes may be single-use
- Rate limiting or payment failure — x402 payment required per call

## How this service works

54ch10: pre-interact URL check. Paste a link, get brief + domain + page. Taste /v1/open/free. 80 calls for $1. Wire in 30s. Analytics-only tooling. Not financial advice.

## Output

Returns a JSON object containing the paste ID, an ok status flag, the stored content, the TTL in seconds indicating how long until expiry, the retrieve URL, a tier label, a note clarifying this is ephemeral agent handoff only and not a vault, and a disclaimer that this is informational tooling only and not financial advice.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Paste id from write"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "abc123xyz",
  "ok": true,
  "note": "Ephemeral agent handoff only — NOT a vault.",
  "tier": "x402",
  "disclaimer": "Informational tooling only. Not financial advice. No custody, trading, or token promotion. Scores are imperfect heuristics — verify independently.",
  "ttl_seconds": 3600,
  "retrieve_url": "https://54ch10.uk/v1/paste?id=abc123xyz"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/54ch10-paste-retrieve-f163074a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 54ch10.uk](https://www.zero.xyz/host/54ch10.uk/llms.txt)
