https://github.com/nandubit/proxy
An Proxy API
https://github.com/nandubit/proxy
Last synced: 4 months ago
JSON representation
An Proxy API
- Host: GitHub
- URL: https://github.com/nandubit/proxy
- Owner: NanduBit
- License: mit
- Created: 2025-05-31T12:00:29.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-01T15:06:34.000Z (about 1 year ago)
- Last Synced: 2025-07-02T12:49:50.945Z (11 months ago)
- Language: HTML
- Homepage: https://proxyapi.soon.it
- Size: 27.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Proxy API
A fast, reliable, and developer-friendly **HTTPS Proxy API** designed to bypass CORS restrictions and forward requests with full HTTP method support.
---
## 📦 Features
- 🌍 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
---
## 📖 How to Use
Send any HTTPS request to `/api` with a target URL and optional data.
---
### 🟨 Node.js (Axios) – Default Example
```js
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));
```
---
## 📂 Other Examples
🟦 JavaScript (Fetch)
```js
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)
```python
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
```bash
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
}
}'
```
---
## 🛠 Request Structure
| 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)
---
## 👨💻 Creator
Made with ❤️ by [@NanduWasTaken](https://github.com/NanduWasTaken)
> 🔧 Made by developers, for developers.
> Open-source and free to use forever ✌️