{"id":28544250,"url":"https://github.com/NanduBit/Proxy","last_synced_at":"2025-07-06T21:31:44.922Z","repository":{"id":296588546,"uuid":"993732137","full_name":"NanduBit/Proxy","owner":"NanduBit","description":"An Proxy API","archived":false,"fork":false,"pushed_at":"2025-06-01T15:06:34.000Z","size":28,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-02T12:49:50.945Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://proxyapi.soon.it","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/NanduBit.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-31T12:00:29.000Z","updated_at":"2025-06-01T15:06:37.000Z","dependencies_parsed_at":"2025-06-01T06:48:11.271Z","dependency_job_id":"453ae21f-36c0-4de1-b9d5-c14cce76f5a6","html_url":"https://github.com/NanduBit/Proxy","commit_stats":null,"previous_names":["nanduwastaken/proxy","nandubit/proxy"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/NanduBit/Proxy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NanduBit%2FProxy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NanduBit%2FProxy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NanduBit%2FProxy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NanduBit%2FProxy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NanduBit","download_url":"https://codeload.github.com/NanduBit/Proxy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NanduBit%2FProxy/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263975355,"owners_count":23538310,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-09T22:07:08.214Z","updated_at":"2025-07-06T21:31:44.916Z","avatar_url":"https://github.com/NanduBit.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eProxy API\u003c/h1\u003e\n\nA fast, reliable, and developer-friendly **HTTPS Proxy API** designed to bypass CORS restrictions and forward requests with full HTTP method support.\n\n\n---\n\n## 📦 Features\n\n- 🌍 Bypass **CORS** easily  \n- ⚡ Supports **GET**, **POST**, **PUT**, **DELETE**, etc.  \n- 🔐 Custom headers and full body forwarding  \n- 🚀 Lightweight Express.js backend  \n- 🧩 Simple and elegant UI for quick testing  \n\n---\n\n## 📖 How to Use\n\nSend any HTTPS request to `/api` with a target URL and optional data.\n\n---\n\n### 🟨 Node.js (Axios) – Default Example\n\n```js\nconst axios = require(\"axios\");\n\naxios.post(\"https://proxyapi.soon.it/api\", {\n  url: \"https://jsonplaceholder.typicode.com/posts\",\n  data: {\n    title: \"foo\",\n    body: \"bar\",\n    userId: 1,\n  },\n})\n.then(response =\u003e console.log(response.data))\n.catch(error =\u003e console.error(error));\n```\n\n---\n\n## 📂 Other Examples\n\n\u003cdetails\u003e\n  \u003csummary\u003e🟦 JavaScript (Fetch)\u003c/summary\u003e\n\n```js\nfetch(\"https://proxyapi.soon.it/api\", {\n  method: \"POST\",\n  headers: { \"Content-Type\": \"application/json\" },\n  body: JSON.stringify({\n    url: \"https://jsonplaceholder.typicode.com/posts\",\n    data: {\n      title: \"foo\",\n      body: \"bar\",\n      userId: 1,\n    },\n  }),\n})\n  .then((res) =\u003e res.json())\n  .then(console.log);\n```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n  \u003csummary\u003e🐍 Python (requests)\u003c/summary\u003e\n\n```python\nimport requests\n\nres = requests.post(\n    \"https://proxyapi.soon.it/api\",\n    json={\n        \"url\": \"https://jsonplaceholder.typicode.com/posts\",\n        \"data\": {\n            \"title\": \"foo\",\n            \"body\": \"bar\",\n            \"userId\": 1\n        }\n    }\n)\n\nprint(res.json())\n```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n  \u003csummary\u003e💻 cURL\u003c/summary\u003e\n\n```bash\ncurl -X POST 'https://proxyapi.soon.it/api' \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"url\": \"https://jsonplaceholder.typicode.com/posts\",\n    \"data\": {\n      \"title\": \"foo\",\n      \"body\": \"bar\",\n      \"userId\": 1\n    }\n  }'\n```\n\n\u003c/details\u003e\n\n---\n\n## 🛠 Request Structure\n\n| Field      | Type   | Description                         |\n|------------|--------|-------------------------------------|\n| `url`      | String | The full URL to proxy to (required) |\n| `data`     | Object | Body content for `POST/PUT` methods |\n| Headers    | Any    | Forwarded automatically             |\n\n\u003e Works with any HTTPS API!\n\n---\n\u003e [!WARNING]\n\u003e This is a public open proxy and **should not be used to forward sensitive credentials** without additional security layers.\n\u003e This proxy should not be used for any purpose which is deemed not fit by the maintainers(eg: Malicious Use... etc)\n\n---\n\n## 👨‍💻 Creator\n\nMade with ❤️ by [@NanduWasTaken](https://github.com/NanduWasTaken)  \n\n\u003e 🔧 Made by developers, for developers.\n\u003e Open-source and free to use forever ✌️\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FNanduBit%2FProxy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FNanduBit%2FProxy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FNanduBit%2FProxy/lists"}