# SlidingBox One-Shot Encrypted Blob Hydrate

> SlidingBox One-Shot Encrypted Blob Hydrate is a paid API for AI agents from slidingbox.ai, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Retrieves and permanently deletes a one-shot encrypted blob by its unique pointer, consuming the pointer irrevocably on success.

## Facts

- Endpoint: GET https://slidingbox.ai/v1/hydrate/sb_5jx362GK2yCdNG3tqZnJKAkyUntpmJVXrWQcU8oyO70
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/slidingbox-one-shot-encrypted-blob-hydrate-ef38864b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Yp6eXde55ply00TFyYq4I

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 slidingbox-one-shot-encrypted-blob-hydrate-ef38864b
```

Example prompt: Retrieve the one-shot encrypted blob at pointer sb_5jx362GK2yCdNG3tqZnJKAkyUntpmJVXrWQcU8oyO70 from SlidingBox — it costs $0.02 USDC and will be permanently destroyed the moment it's read.

## When to prefer this

Use this endpoint when you need to retrieve a secret, credential, or payload that was intentionally stored as a one-time-readable blob. It is specifically designed for burn-after-reading workflows where the sender wants guaranteed destruction upon retrieval. Prefer this over standard secret vaults or storage APIs when non-repudiation of consumption and automatic deletion are required.

## Known failure modes

- 404 Not Found — pointer already consumed or never existed; no refund issued
- Payment failure — x402 payment header missing, malformed, or insufficient funds; blob not returned
- Network timeout — blob not returned but pointer state is ambiguous; treat as potentially consumed
- Invalid pointer format — malformed pointer string returns an error without consuming payment

## How this service works

Pay per request (x402) to retrieve and permanently delete a one-shot encrypted blob by pointer. The pointer is invalidated the instant this call succeeds; a second hydrate against the same pointer always 404s, paid or not.

## Output

The decrypted contents of the one-shot blob associated with the pointer. After a successful call the pointer is invalidated server-side; any subsequent attempt to hydrate the same pointer returns a 404 regardless of payment.

## 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"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "properties": {
      "pointer": {
       "type": "string",
       "pattern": "^sb_[A-Za-z0-9_-]{43}$"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "ciphertext",
      "iv",
      "content_type"
     ],
     "properties": {
      "iv": {
       "type": "string",
       "format": "base64url"
      },
      "ciphertext": {
       "type": "string",
       "format": "base64url"
      },
      "content_type": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/slidingbox-one-shot-encrypted-blob-hydrate-ef38864b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from slidingbox.ai](https://www.zero.xyz/host/slidingbox.ai/llms.txt)
