a simple cors proxy. paste any url below and it gets fetched through our server, bypassing cors restrictions entirely. works with images, json, text, html, anything. use it as a direct image src or fetch it in javascript. nothing is logged, nothing is stored.
responses over 5mb are restricted to whitelisted domains only. if you need to be whitelisted, hmu on discord @zzzmate
// image — use it as a direct src
<img src="https://zzzmate.hu/api/fuckcors?url=https://example.com/image.png" />
// image — fetch as blob
const res = await fetch(
"https://zzzmate.hu/api/fuckcors?url=" +
encodeURIComponent("https://example.com/image.png")
);
const blob = await res.blob();
const objectUrl = URL.createObjectURL(blob);
// json — fetch any api
const res = await fetch(
"https://zzzmate.hu/api/fuckcors?url=" +
encodeURIComponent("https://myanimelist.net/animelist/zzzmate/load.json?offset=0&status=7")
);
const data = await res.json();
console.log(data);
// text / html — fetch any page
const res = await fetch(
"https://zzzmate.hu/api/fuckcors?url=" +
encodeURIComponent("https://example.com")
);
const text = await res.text();
console.log(text);