🌍 Universal Fetcher API

Server-side universal fetch/proxy API with RAW and JSON modes.
RAW MODE (Best for PDFs/images/files)

fetch("https://yourdomain.com/index.php", {
  method: "POST",
  headers: {
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    url: "https://example.com/file.pdf",
    return_type: "raw"
  })
})
.then(res => res.blob())
.then(blob => {
  console.log(blob);
});