Free tier
- Public REST API (rate‑limited)
- Basic RSS feed (5 items, delayed)
- Limited daily queries
Lifetime premium – €15 XMR
- Unlimited API requests (fair use)
- Webhook notifications for every new post (Discord, Slack, Teams, custom)
- Email alerts for all posts, keyword matches, etc.
- Premium RSS feeds (unlimited custom feeds with filtering)
- Bulk database download
API Documentation
Authentication
Include your API key in requests:
GET /api.php?key=YOUR_KEY&action=search&q=keyword
Available Actions
| Action | Parameters | Description |
|---|---|---|
search |
q, author, min_views, limit | Search pastes by keyword, author, or view count |
get |
id | Get specific paste by ID |
recent |
limit (default: 10) | Get most recent pastes |
stats |
- | Get database statistics |
users |
username, limit, offset | Get list of users or specific user details |
Example Requests
// Search for keyword
GET /api.php?key=xxx&action=search&q=leak
// Get specific paste
GET /api.php?key=xxx&action=get&id=746223
// Recent pastes
GET /api.php?key=xxx&action=recent&limit=20
// Filter by author and views
GET /api.php?key=xxx&action=search&author=john&min_views=1000
// Get user list
GET /api.php?key=xxx&action=users&limit=10
// Get specific user
GET /api.php?key=xxx&action=users&username=example_user
GET /api.php?key=xxx&action=users&username=123 (by ID)
Response Format
All responses return JSON:
{
"status": "success",
"data": [
{
"id": "746223",
"title": "Paste Title",
"link": "paste-slug",
"author": "username",
"created_at": "2026-01-12 08:34:00",
"views": 1234,
"comments": 5,
"filename": "746223-paste-slug.txt"
}
]
}
Webhooks (Premium)
Configure at: webhook-dashboard.php
Discord-compatible webhooks with full customization. Receives POST on new pastes with placeholders:
Available placeholders:
[id] [title] [link] [url] [author] [created_at]
[views] [comments] [preview] [keyword]
Example payload sent to your webhook URL:
{
"username": "Doxbin Alert",
"content": "New post: [title]",
"embeds": [{
"title": "[title]",
"description": "**Author:** [author]\n**Views:** [views]",
"url": "[url]",
"color": 3447003,
"timestamp": "2026-01-12T12:00:00Z",
"fields": [
{"name": "Post ID", "value": "[id]", "inline": true},
{"name": "Author", "value": "[author]", "inline": true}
]
}]
}
RSS Feeds
Free: rss.php (5 items, delayed)
Premium: Unlimited custom feeds with filtering
// Basic premium feed
GET /rss.php?key=YOUR_KEY
// Keyword filtering
GET /rss.php?key=xxx&keywords=leak,hack,swat
// Exclude spam
GET /rss.php?key=xxx&exclude=fake,troll
// Author specific
GET /rss.php?key=xxx&author=username
// View count filtering
GET /rss.php?key=xxx&min_views=5000&max_views=50000
// Date range
GET /rss.php?key=xxx&date_from=2026-01-01&date_to=2026-01-31
// Combine filters
GET /rss.php?key=xxx&keywords=swat&min_views=1000&exclude=fake&limit=100
Email Alerts (Premium)
Configure up to 3 email recipients and 25 keywords. Receive instant notifications for:
- All new pastes
- Keyword matches in title or content
- Specific author posts
Error Handling
// Invalid key
{"status":"error","message":"Invalid API key"}
// Missing parameters
{"status":"error","message":"Missing required parameter: action"}
// Rate limited (free tier)
{"status":"error","message":"Rate limit exceeded"}
// Flagged account
{"status":"error","message":"Account flagged - contact support"}
Rate Limits
- Free tier: 100 requests/day per IP
- Premium: Unlimited (fair use - don't hammer the API)
Quick Start
# 1. Purchase premium access (€15 XMR lifetime)
# 2. Your API key appears on the payment page after confirmation
# 3. Test your key
curl "https://dox.li/api.php?key=YOUR_KEY&action=stats"
# 4. Search for keywords
curl "https://dox.li/api.php?key=YOUR_KEY&action=search&q=leak"
# 5. Set up RSS feed
https://dox.li/rss.php?key=YOUR_KEY&keywords=swat,hack
# 6. Configure webhooks at /webhook-dashboard.php
# 7. Set up email alerts at /email-alerts.php
Terms of Service
Don't abuse our shit. Fair use means if you're doing too many requests or if you flag our DDoS protection, you will be placed on a short hold. You're welcome to share keys within reason. Do whatever, just don't break our shit. We reserve the right to disable any key without questions or reason.
We do not own any of the content here. For abuse reports, please go to doxbin.com/support as we simply mirror the content.