{
  "name": "shrink",
  "description": "Privacy-first URL shortener. Pronounceable slugs. No logs, no tracking.",
  "endpoints": {
    "POST /api/shorten": {
      "body": "{\"url\": \"https://encrypt.click/u/#zSSYWjX4KL8gAhoeV\"}",
      "returns": "short URL with pronounceable slug (deduplicates automatically)"
    },
    "GET /api/resolve/:slug": {
      "returns": "original URL as JSON (no redirect)"
    },
    "GET /:slug": {
      "returns": "301 redirect to original URL"
    }
  },
  "allowed_domains": [
    "encrypt.click"
  ],
  "example_slugs": "badoke, fumevi, tapenu → auto-grows: badokemu, fumeviha, ...",
  "curl_example": "curl -s -X POST https://l.encrypt.click/api/shorten -H 'Content-Type: application/json' -d '{\"url\":\"https://encrypt.click/u/#zSSYWjX4KL8gAhoeV\"}'"
}
