{"id":15878788,"url":"https://github.com/andrevarandas/royale-proxy-api","last_synced_at":"2026-06-11T20:31:18.113Z","repository":{"id":256969098,"uuid":"811391054","full_name":"AndreVarandas/royale-proxy-api","owner":"AndreVarandas","description":"Proxy API for the official Clash Royale API, built with Nuxt.js. Easily forward requests with a single IP whitelist. Simplify your integration with the official Clash Royale API.","archived":false,"fork":false,"pushed_at":"2025-06-23T13:53:49.000Z","size":290,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-23T14:44:21.613Z","etag":null,"topics":["clash-royale","clash-royale-api","game-api","game-development","server-proxy","supercell-clash-royale","supercell-games"],"latest_commit_sha":null,"homepage":"https://developer.clashroyale.com/","language":"TypeScript","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/AndreVarandas.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}},"created_at":"2024-06-06T14:02:28.000Z","updated_at":"2025-06-23T13:53:52.000Z","dependencies_parsed_at":"2024-09-14T05:46:48.289Z","dependency_job_id":"8c252729-e0f6-4afe-835f-99613fcf422e","html_url":"https://github.com/AndreVarandas/royale-proxy-api","commit_stats":null,"previous_names":["andrevarandas/royale-proxy-api"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AndreVarandas/royale-proxy-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreVarandas%2Froyale-proxy-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreVarandas%2Froyale-proxy-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreVarandas%2Froyale-proxy-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreVarandas%2Froyale-proxy-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AndreVarandas","download_url":"https://codeload.github.com/AndreVarandas/royale-proxy-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreVarandas%2Froyale-proxy-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34217312,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["clash-royale","clash-royale-api","game-api","game-development","server-proxy","supercell-clash-royale","supercell-games"],"created_at":"2024-10-06T02:41:51.717Z","updated_at":"2026-06-11T20:31:18.089Z","avatar_url":"https://github.com/AndreVarandas.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Royale Proxy API\n\n![Royale Proxy API Logo](art/logo.jpg)\n\nWelcome to the Royale Proxy API, your gateway to seamless integration with the official [Clash Royale API](https://developer.clashroyale.com/). Built with the robust [Nuxt.js](https://nuxt.com/), this project simplifies your development process by eliminating the need for IP whitelisting.\n\n## 🌟 Motivation\n\nThe official Clash Royale API requires you to whitelist your server's IP address, which is a significant hurdle for building with the API. Royale Proxy API acts as a bridge, forwarding your requests to the official API without the need for whitelisting every connected client.\n\nYou just need to whitelist the server ip and provide the key, and let the server handle the rest!\n\n## 🚀 Quick Start\n\n1. **Get your API key** from the [Clash Royale Developer Portal](https://developer.clashroyale.com/).\n2. **Whitelist your server or local IP address** on the developer portal.\n3. **Clone this repository** and install the dependencies.\n4. **Copy the `.env.example` file** to `.env` and add your API key.\n5. **Run the development server** and start making requests!\n\n### Install Dependencies\n\nPick your favorite package manager and install the necessary dependencies:\n\n```bash\n# Using npm\nnpm install\n\n# Using pnpm\npnpm install\n\n# Using yarn\nyarn install\n\n# Using bun\nbun install\n```\n\n### Run the Development Server\n\nLaunch the development server at http://localhost:3000:\n\n```bash\n\n# Using npm\n\nnpm run dev\n\n# Using pnpm\n\npnpm run dev\n\n# Using yarn\n\nyarn dev\n\n# Using bun\n\nbun run dev\n```\n\n### Production Ready\n\nPrepare your application for production:\n\n```bash\n\n# Using npm\n\nnpm run build\n\n# Using pnpm\n\npnpm run build\n\n# Using yarn\n\nyarn build\n\n# Using bun\n\nbun run build\n```\n\n### Preview your production build locally:\n\n```bash\n# Using npm\nnpm run preview\n\n# Using pnpm\npnpm run preview\n\n# Using yarn\nyarn preview\n\n# Using bun\nbun run preview\n```\n\nFor detailed deployment instructions, refer to the [Nuxt.js documentation](https://nuxt.com/docs/guide).\n\n### 📜 License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more information.\n\n### ⚠️ Disclaimer\n\nThis project is unofficial and not endorsed by Supercell. For more information, review Supercell's Fan Content Policy: [https://supercell.com/en/fan-content-policy](https://supercell.com/en/fan-content-policy).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrevarandas%2Froyale-proxy-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandrevarandas%2Froyale-proxy-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrevarandas%2Froyale-proxy-api/lists"}