Open Source

CORS Proxy

A lightweight CORS proxy built with Cloudflare Workers to bypass cross-origin restrictions by routing requests through a worker.

How to Use

Simply append the target API endpoint to your Cloudflare Worker URL:

https://yourproxy.username.workers.dev/{API_ENDPOINT}

Example

Fetching data from the example.com:

https://yourproxy.username.workers.dev/https://example.com/?limit=1

Custom Referer

Some APIs require a specific Referer header. Use the customReferer query parameter to set it.

https://yourproxy.username.workers.dev/https://example.com/&customReferer=http://example.com
tip: The parameter will be applied to the request header and automatically stripped from the URL before forwarding.