A lightweight API for saving URLs, text, and files via POST requests.
Include your API key in the header:
Authorization: Bearer your-secret-key
POST /api.php?action=url
Content-Type: application/json
{
"url": "https://example.com"
}
POST /api.php?action=text
Content-Type: application/json
{
"text": "Selected text",
"url": "https://example.com",
"title": "Page title"
}
POST /api.php?action=file
Content-Type: multipart/form-data
file=@example.pdf
💡 Tip: Use this with Safari + Shortcuts on iOS to capture anything with a tap.
Made with ❤️ and PHP + SQLite.