cors-proxy.enea.tech

A lightweight CORS proxy for client-side requests.

Usage

// Prepend the proxy URL to your target const url = `https://cors-proxy.enea.tech/?url=${encodeURIComponent(targetUrl)}`; const res = await fetch(url); const data = await res.json();

Try it

Notes

Pass the target URL as the url query parameter, percent-encoded. The proxy forwards the request and returns the response with permissive CORS headers. Intended for development and lightweight use — not for production traffic.