Epstein Emails
Skill by blockboy32
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/blockboy32/epstein-emailsEpstein Emails API
Query 383,000+ court-released Epstein emails via a pay-per-request API. Structured JSON. USDC on Base via the x402 protocol.
Required Credentials
This skill requires a funded EVM wallet to make payments. You must have:
| Variable | Format | Required | Description |
|---|---|---|---|
XCLAW02_PRIVATE_KEY | 0x + 64 hex chars | Yes | EVM wallet private key for signing payments |
Your wallet must hold USDC on Base (eip155:8453). Each API request costs $0.001 USDC.
Security: Never log, display, or echo your private key. Use environment variables only. Use a dedicated hot wallet funded with only what you need — do not use a wallet holding significant funds.
When to Use This Skill
Use this skill when:
- The user asks about Epstein, Jeffrey Epstein, or Ghislaine Maxwell emails
- The user wants to search court-released documents or public records from the Epstein case
- The user needs structured email data (sender, recipient, date, subject, body) from the Epstein archive
- The user wants to cross-reference names, dates, or connections in the Epstein files
How to Respond
| User Says/Asks | What to Do |
|---|---|
| "Search Epstein emails for X" | Use /api/search — costs 1 request ($0.001). Confirm with user before calling. |
| "Who emailed whom?" | Use /api/emails with from/to filters — costs 1 request ($0.001). Confirm first. |
| "Show emails from a date" | Use /api/emails with date filter — costs 1 request ($0.001). Confirm first. |
| "How many emails mention X?" | Use free /api/preview first (no cost). Report count. Only use paid search if user wants full results. |
| "Get all emails" | Warn the user about cost first. Full pagination could cost ~$0.384 (384 requests at 1000/page). Get explicit approval before starting. |
| "What's in the Epstein files?" | Explain the dataset — no API call needed. |
Important: Always confirm with the user before making paid requests. Never paginate through the full dataset without explicit user approval and a cost estimate.
Spending Safeguards
- Always estimate cost before multi-request operations. Formula:
ceil(total_results / 1000) * $0.001 - Use the free
/api/previewendpoint first to check result counts before committing to paid requests. - Never auto-paginate through all results without explicit user approval.
- Single requests are fine — one search or one filtered query costs $0.001. Just confirm with the user.
- Set a spending limit in your x402 client if supported (e.g.,
max_amountparameter).
API Base URL
https://epsteinemails.xyz
Endpoints
GET /api/preview (FREE)
Free preview search. Use this first to check result counts before making paid requests. Rate limited (10 req/min), truncated bodies, max 10 results. No payment required.
Query Parameters:
| Param | Type | Description |
|---|---|---|
q | string | Search query (min 2 characters) |
Response:
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-blockboy32-epstein-emails": {
"enabled": true,
"auto_update": true
}
}
}