corsx

corsx is a lightweight CORS proxy running on Cloudflare's edge network. Helps client-side JavaScript fetch content from any URL without CORS restrictions.

API Usage

GET /proxy?url=https://example.com

JavaScript Example

const response = await fetch(
  `https://your-worker.workers.dev/proxy?url=${encodeURIComponent(url)}`
);
const data = await response.text();

Try it