{"id":28565011,"url":"https://github.com/reanimatingthenew/curl-to-everything","last_synced_at":"2026-05-04T12:35:28.034Z","repository":{"id":296844007,"uuid":"977820735","full_name":"ReanimatingTheNew/curl-to-everything","owner":"ReanimatingTheNew","description":"curl convert json or code","archived":false,"fork":false,"pushed_at":"2025-05-05T02:54:40.000Z","size":13,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-02T22:46:29.575Z","etag":null,"topics":["code","converter","curl","headers","json","python"],"latest_commit_sha":null,"homepage":"https://curl-to.com","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/ReanimatingTheNew.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-05T02:43:59.000Z","updated_at":"2025-05-05T02:57:22.000Z","dependencies_parsed_at":"2025-06-08T00:47:00.816Z","dependency_job_id":null,"html_url":"https://github.com/ReanimatingTheNew/curl-to-everything","commit_stats":null,"previous_names":["reanimatingthenew/curl-to-everything"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ReanimatingTheNew%2Fcurl-to-everything","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ReanimatingTheNew%2Fcurl-to-everything/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ReanimatingTheNew%2Fcurl-to-everything/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ReanimatingTheNew%2Fcurl-to-everything/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ReanimatingTheNew","download_url":"https://codeload.github.com/ReanimatingTheNew/curl-to-everything/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ReanimatingTheNew%2Fcurl-to-everything/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259088492,"owners_count":22803645,"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":["code","converter","curl","headers","json","python"],"created_at":"2025-06-10T14:01:22.487Z","updated_at":"2026-05-04T12:35:28.029Z","avatar_url":"https://github.com/ReanimatingTheNew.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Curl to JSON 转换工具\n\n[![GitHub stars](https://img.shields.io/github/stars/yourusername/curl-to-json-tool.svg)](https://github.com/yourusername/curl-to-json-tool/stargazers)\n[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)\n\n## 🚀 项目简介\n\n**Curl to JSON 转换工具**是一个强大的在线工具，可以将复杂的curl命令快速转换为结构化的JSON格式，便于开发人员分析和处理HTTP请求。无论您是API开发者、测试工程师还是网络安全专家，这个工具都能显著提高您的工作效率。\n\n👉 **[curl-to.com](https://curl-to.com)** 👈\n\n## ✨ 主要特性\n\n- 🔄 **即时转换**：将curl命令实时转换为JSON格式\n- 🧩 **全面解析**：支持各种复杂的curl参数和选项\n- 📋 **一键复制**：便捷的复制功能，轻松集成到您的工作流程\n- 🌐 **多语言支持**：界面支持多种语言，包括英文、中文、印地语、法语、德语和西班牙语\n- 🔌 **API接口**：提供RESTful API，方便集成到您的应用程序中\n- 📱 **响应式设计**：完美适配桌面和移动设备\n\n## 🛠️ 技术实现\n\n该工具基于现代Web技术构建，包括：\n\n- 前端：HTML5, CSS3, JavaScript (ES6+)\n- 后端：Python + Flask\n- 解析引擎：自定义curl命令解析算法\n- 部署：支持各种云平台部署\n\n## 📖 使用示例\n\n### 基本用法\n\n1. 访问 [https://curl-to.com](https://curl-to.com)\n2. 将您的curl命令粘贴到输入框中\n3. 点击\"转换\"按钮\n4. 获取格式化的JSON结果\n\n### 示例输入\n\n```bash\ncurl -X POST https://api.example.com/data \\\n  -H \"Content-Type: application/json\" \\\n  -H \"Authorization: Bearer token123\" \\\n  -d '{\"name\":\"John\",\"age\":30}'\n```\n\n### 示例输出\n\n```json\n{\n  \"method\": \"POST\",\n  \"url\": \"https://api.example.com/data\",\n  \"headers\": {\n    \"Content-Type\": \"application/json\",\n    \"Authorization\": \"Bearer token123\"\n  },\n  \"data\": {\n    \"name\": \"John\",\n    \"age\": 30\n  }\n}\n```\n\n## 🔌 API 使用\n\n### 接口地址\n\n```\nPOST https://curl-to.com/api/convert\n```\n\n### 请求格式\n\n```json\n{\n  \"curl\": \"your curl command here\"\n}\n```\n\n### 响应格式\n\n```json\n{\n  \"method\": \"POST\",\n  \"url\": \"https://api.example.com\",\n  \"headers\": {\n    \"Content-Type\": \"application/json\"\n  },\n  \"data\": {\n    \"key\": \"value\"\n  }\n}\n```\n\n## 🤝 贡献指南\n\n我们欢迎社区贡献！如果您想为项目做出贡献，请：\n\n1. Fork 这个仓库\n2. 创建您的特性分支 (`git checkout -b feature/amazing-feature`)\n3. 提交您的更改 (`git commit -m 'Add some amazing feature'`)\n4. 推送到分支 (`git push origin feature/amazing-feature`)\n5. 开启一个 Pull Request\n\n## 📄 许可证\n\n本项目采用 MIT 许可证 - 详情请参阅 [LICENSE](LICENSE) 文件\n\n## 🔗 相关链接\n\n- [官方网站](https://curl-to.com)\n- [问题反馈](https://github.com/yourusername/curl-to-json-tool/issues)\n- [API文档](https://curl-to.com/api-docs)\n\n## 🌟 为什么选择我们的工具？\n\n- **开发者友好**：专为开发人员设计，提供直观的界面和丰富的功能\n- **高性能**：快速解析复杂的curl命令，即时返回结果\n- **开源免费**：完全开源，可以免费使用和定制\n- **持续更新**：我们不断改进和添加新功能\n\n---\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://curl-to.com\"\u003e访问官方网站\u003c/a\u003e •\n  \u003ca href=\"https://github.com/yourusername/curl-to-json-tool\"\u003eGitHub 仓库\u003c/a\u003e •\n  \u003ca href=\"https://curl-to.com/api-docs\"\u003eAPI 文档\u003c/a\u003e\n\u003c/p\u003e\n\n---\n\n关键词: curl命令转换, JSON格式化, API调试工具, HTTP请求分析, 开发者工具, curl解析器, curl to json, API测试\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freanimatingthenew%2Fcurl-to-everything","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freanimatingthenew%2Fcurl-to-everything","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freanimatingthenew%2Fcurl-to-everything/lists"}