A fast, reliable, and developer-friendly HTTPS Proxy API designed to bypass CORS restrictions and forward requests with full HTTP method support.
- 🌍 Bypass CORS easily
- ⚡ Supports GET, POST, PUT, DELETE, etc.
- 🔐 Custom headers and full body forwarding
- 🚀 Lightweight Express.js backend
- 🧩 Simple and elegant UI for quick testing
Send any HTTPS request to /api with a target URL and optional data.
const axios = require("axios");
axios.post("https://proxyapi.soon.it/api", {
url: "https://jsonplaceholder.typicode.com/posts",
data: {
title: "foo",
body: "bar",
userId: 1,
},
})
.then(response => console.log(response.data))
.catch(error => console.error(error));🟦 JavaScript (Fetch)
fetch("https://proxyapi.soon.it/api", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
url: "https://jsonplaceholder.typicode.com/posts",
data: {
title: "foo",
body: "bar",
userId: 1,
},
}),
})
.then((res) => res.json())
.then(console.log);🐍 Python (requests)
import requests
res = requests.post(
"https://proxyapi.soon.it/api",
json={
"url": "https://jsonplaceholder.typicode.com/posts",
"data": {
"title": "foo",
"body": "bar",
"userId": 1
}
}
)
print(res.json())💻 cURL
curl -X POST 'https://proxyapi.soon.it/api' \
-H "Content-Type: application/json" \
-d '{
"url": "https://jsonplaceholder.typicode.com/posts",
"data": {
"title": "foo",
"body": "bar",
"userId": 1
}
}'| Field | Type | Description |
|---|---|---|
url |
String | The full URL to proxy to (required) |
data |
Object | Body content for POST/PUT methods |
| Headers | Any | Forwarded automatically |
Works with any HTTPS API!
Warning
This is a public open proxy and should not be used to forward sensitive credentials without additional security layers. This proxy should not be used for any purpose which is deemed not fit by the maintainers(eg: Malicious Use... etc)
Made with ❤️ by @NanduWasTaken
🔧 Made by developers, for developers. Open-source and free to use forever ✌️