For Agents
Create, read, edit, and delete text pastes on Paste Monster with API key authentication. Retrieve user profile information and manage paste lifecycle.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Paste Monster API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Paste Monster API.
Create new text pastes with content and metadata
Retrieve paste content by unique paste identifier
Edit existing paste content after creation
Delete pastes permanently via authenticated requests
GET STARTED
Use for: I need to create a text paste with my API key, Retrieve the content of a specific paste, I want to edit an existing paste I created, Delete a paste I no longer need
Not supported: Does not handle syntax highlighting selection, paste expiry, or collaborative editing — use for basic text paste CRUD with API key authentication only.
Jentic publishes the only available OpenAPI specification for Paste Monster API, keeping it validated and agent-ready. The Paste Monster API provides full CRUD operations for a pastebin service, allowing authenticated users to create, read, edit, and delete text pastes. It includes 5 endpoints covering paste creation, retrieval by ID, content editing, deletion, and user profile access via API key authentication in the Authorization header.
Access authenticated user profile and paste history
Patterns agents use Paste Monster API for, with concrete tasks.
★ Authenticated Paste Management
Create and manage text pastes with full lifecycle control using API key authentication. Unlike anonymous pastebin services, Paste Monster ties pastes to your account, enabling editing and deletion after creation. The Authorization header carries your API key for all write operations, ensuring only paste owners can modify or remove content.
Create a new paste via POST /create with content in the request body, then edit it via PATCH /edit/{pasteId} with updated content
Temporary Code Sharing with Cleanup
Share code snippets or configuration files temporarily and clean them up when no longer needed. The Paste Monster API lets you create a paste, share the URL, and then delete it via DELETE /delete/{pasteId} when the recipient has retrieved the content. This supports workflows where sensitive configuration should not persist indefinitely on public services.
Create a paste containing database credentials via POST /create, share the paste ID with the recipient, then delete via DELETE /delete/{pasteId} after confirmation
Developer Paste History Tracking
Access your user profile and paste history through the /@me endpoint to audit previously created pastes. This enables automation tools to track which pastes have been shared, identify stale content for cleanup, or build personal snippet libraries from your paste history.
Retrieve user profile and paste history via GET /@me to list all pastes created with this API key
AI Agent Paste Operations via Jentic
AI agents create, edit, and delete pastes through Jentic without managing API key headers directly. Jentic stores the Authorization header value securely and provides operation discovery, letting agents perform paste lifecycle operations by describing their intent rather than constructing raw HTTP requests.
Search Jentic for 'create a text paste', load the Paste Monster create operation schema, and execute with content payload using stored API key credentials
5 endpoints — jentic publishes the only available openapi specification for paste monster api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/create
Create a new paste
/paste/@{pasteId}
Retrieve a paste by ID
/edit/{pasteId}
Edit an existing paste
/delete/{pasteId}
Delete a paste permanently
/@me
Get user profile and paste history
/create
Create a new paste
/paste/@{pasteId}
Retrieve a paste by ID
/edit/{pasteId}
Edit an existing paste
/delete/{pasteId}
Delete a paste permanently
/@me
Get user profile and paste history
Three things that make agents converge on Jentic-routed access.
Credential isolation
Paste Monster API keys are stored encrypted in the Jentic vault. Agents receive authenticated requests with the Authorization header injected without exposing raw keys.
Intent-based discovery
Agents search by intent (e.g., 'edit a text paste') and Jentic returns matching Paste Monster operations with their path parameters and request body schemas.
Time to first call
Direct Paste Monster integration: under 1 day (simple REST, API key auth). Through Jentic: under 15 minutes — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
GitHub API
Source control platform with Gists for versioned code sharing
Use GitHub Gists when you need version history, forking, and comments on shared code. Paste Monster is simpler for quick ephemeral sharing.
Specific to using Paste Monster API through Jentic.
Why is there no official OpenAPI spec for Paste Monster API?
Paste Monster does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Paste Monster API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Paste Monster API use?
The API uses an API key passed in the Authorization header for all operations. Through Jentic, the API key is stored encrypted in the credential vault and agents authenticate without exposing the key in their context.
Can I edit a paste after creating it?
Yes. Use PATCH /edit/{pasteId} with the updated content in the request body. You must authenticate with the same API key used to create the paste. Only paste owners can edit their content.
How do I delete a paste?
Call DELETE /delete/{pasteId} with your API key in the Authorization header. The paste is permanently removed. Only the paste creator can delete it.
How do I retrieve my paste history?
Call GET /@me with your API key in the Authorization header. The endpoint returns your user profile along with your paste history, including paste IDs and creation timestamps.
How do I manage pastes through Jentic?
Search Jentic for 'edit a text paste' or 'delete a paste' to find the corresponding Paste Monster operations. Load the schema to see required parameters (paste ID, content), then execute with your stored credentials. Install with pip install jentic.