📥 TALOS

A lightweight API for saving URLs, text, and files via POST requests.

🔐 Authentication

Include your API key in the header:

Authorization: Bearer your-secret-key

🌐 Endpoints

➕ Save URL

POST /api.php?action=url
Content-Type: application/json

{
  "url": "https://example.com"
}

📝 Save Text + URL + Title

POST /api.php?action=text
Content-Type: application/json

{
  "text": "Selected text",
  "url": "https://example.com",
  "title": "Page title"
}

📁 Upload File

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.