CORS Server Documentation

What is "CORS"?

Cross-Origin Resource Sharing (CORS) is an HTTP-header based mechanism that allows a server to indicate any origins (domain, scheme, or port) other than its own from which a browser should permit loading resources. An example of a cross-origin request: the front-end JavaScript code served from https://domain-a.com uses XMLHttpRequest to make a request for https://domain-b.com/data.json.
For security reasons, browsers restrict cross-origin HTTP requests initiated from scripts. For example, XMLHttpRequest and the Fetch API follow the same-origin policy. This means that a web application using those APIs can only request resources from the same origin the application was loaded from unless the response from other origins includes the right CORS headers.

This server is used to bypass CORS. The server is used as a proxy, which now makes the requests for you. All you have to do is to simply use this url with your url combined. There is a limit of 10 requests per second! All sign of abuse will result to a permanent ban.

Simple example:
https://cors.keironhus.de/fetch?url={yourLink}

Authentification header example:
https://cors.keironhus.de/fetch?url={yourLink}&authMethod={method}&authKey={secretKey}
Basic Authentication Header Generator