---
name: pastebin.0000402.xyz
description: pastebin.0000402.xyz is a text paste storage service that accepts arbitrary string content and returns a unique token and retrieval URL. It supports optional syntax language tagging for code or structured text. Retrieval of stored pastes is handled via a separate GET endpoint not exposed as a skill here.
host: pastebin.0000402.xyz
---

# pastebin.0000402.xyz

PasteVault is a minimal remote text storage host aimed at agents that need to persist string content—code snippets, logs, notes, or any text—and receive a stable token for later reference. It serves use cases where an agent must hand off a block of text to another system or user via a URL, or store intermediate output for retrieval in a subsequent step. It does not offer search, listing, editing, or deletion of pastes.

## When to use this host

Use this host when an agent needs to persist a block of text remotely and obtain a stable token or URL for sharing or later retrieval. It is appropriate for storing code, logs, configuration snippets, or any string output. Do not use it for retrieving or reading existing pastes—use the GET /paste/{token} endpoint directly instead. Do not use it for binary file storage, file uploads, structured data persistence, or any operation requiring search, listing, editing, or deletion of stored content. If the use case requires a full-featured document or file store, a dedicated object storage or document management service would be more appropriate.

## Capabilities

### Paste Storage

Accepts text content and persists it to a remote store, returning a unique token and retrieval URL that can be used to access the paste later via GET /paste/{token}.

- **`create-paste`** — Stores text content as a retrievable paste and returns a unique token and retrieval URL, with optional syntax language tagging.

## Skill reference

### `create-paste`

**PasteVault – Create Paste** — Stores text content as a retrievable paste and returns a unique token and retrieval URL, with optional syntax language tagging.

*Use when:* Use when an agent needs to persist a block of text (code, logs, notes, or any string content) to a remote store and get back a stable token for later retrieval via GET /paste/{token}.

*Not for:* Do not use for retrieving or reading existing pastes; use GET /paste/{token} instead. Not suitable for binary file storage.

**Inputs:**

- `content` (string, required) — The text content to store. Minimum length 1 character. Supports multiline text, Unicode, and special characters.
- `language` (string) — Optional syntax language hint for the paste (e.g. 'python', 'json'). Maximum 64 characters. Pass null to omit.

**Returns:** Returns a UUID token, the paste size in bytes, and a message with the free retrieval path at GET /paste/{token}.

**Example:** `{"content": "Hello, Base Paste!\nLine 2: Unicode → π≈3.14159", "language": "plaintext"}`

---
