{"id":21116429,"url":"https://github.com/fatiq123/ktor-http","last_synced_at":"2025-07-11T15:40:15.095Z","repository":{"id":204073379,"uuid":"711047190","full_name":"fatiq123/Ktor-HTTP","owner":"fatiq123","description":"This repository includes different projects of Ktor Client for HTTP.","archived":false,"fork":false,"pushed_at":"2023-11-01T10:42:20.000Z","size":95,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-14T10:42:03.539Z","etag":null,"topics":["http","kotlin","ktor-auth","ktor-client","ktor-jwt","ktor-server"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/fatiq123.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":"2023-10-28T04:02:13.000Z","updated_at":"2023-10-28T04:05:51.000Z","dependencies_parsed_at":null,"dependency_job_id":"92c3968c-dbb6-471e-b5a2-3c648694d2e0","html_url":"https://github.com/fatiq123/Ktor-HTTP","commit_stats":null,"previous_names":["fatiq123/ktor-http"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fatiq123/Ktor-HTTP","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fatiq123%2FKtor-HTTP","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fatiq123%2FKtor-HTTP/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fatiq123%2FKtor-HTTP/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fatiq123%2FKtor-HTTP/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fatiq123","download_url":"https://codeload.github.com/fatiq123/Ktor-HTTP/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fatiq123%2FKtor-HTTP/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264842102,"owners_count":23671930,"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":["http","kotlin","ktor-auth","ktor-client","ktor-jwt","ktor-server"],"created_at":"2024-11-20T02:29:35.192Z","updated_at":"2025-07-11T15:40:15.076Z","avatar_url":"https://github.com/fatiq123.png","language":"Kotlin","readme":"\n# Ktor-HTTP\n\nWelcome to the ktor-HTTP repository! This repository contains a collection of projects aimed at building APIs using the Ktor framework. Below, you'll find information about the various projects and a section on contributions.\n\n## API Reference\n\n#### Get all items\n\n```http\n  GET /api/items\n```\n\n| Parameter | Type     | Description                |\n| :-------- | :------- | :------------------------- |\n| `api_key` | `string` | **Required**. Your API key |\n\n#### Get item\n\n```http\n  GET /api/items/${id}\n```\n\n| Parameter | Type     | Description                       |\n| :-------- | :------- | :-------------------------------- |\n| `id`      | `string` | **Required**. Id of item to fetch |\n\n#### add(num1, num2)\n\nTakes two numbers and returns the sum.\n\n\n## Authors\n\n- [@fatiq123](https://github.com/fatiq123)\n\n\n## Contributing\n\nContributions are always welcome!\n\nSee `contributing.md` for ways to get started.\n\nPlease adhere to this project's `code of conduct`.\n\n\n## Features\n\n- Ktor-Http\n- Kotlin Embeeded\n- CLean Code\n- Cross platform\n\n\n## Feedback\n\nIf you have any feedback, please reach out to us at fatiqhussnain1@gmail.com\n\n\n## 🚀 About Me\nI'm a Computer Science student At University of Engineering and Technology Lahore Pakistan. I have passion for creating amazing and helpful projects for people. My stacks includes Jetpack Compose. XML. Kotlin. Dart. Flutter. Node.js. Ktor. Python. AI. \n\n\n# Hi, I'm Fatiq Hussnain! 👋\n\n\n## 🔗 Links\n\n[![linkedin](https://img.shields.io/badge/linkedin-0A66C2?style=for-the-badge\u0026logo=linkedin\u0026logoColor=white)](https://www.linkedin.com/in/fatiq-hussnain-146a32293/)\n[![twitter](https://img.shields.io/badge/twitter-1DA1F2?style=for-the-badge\u0026logo=twitter\u0026logoColor=white)](https://twitter.com/fatiq_hussnain)\n\n\n## 🛠 Skills\nJetpack Compose. XML. Kotlin. Dart. Flutter. Node.js. Ktor. Python. AI.\n\n\n## Related\n\nHere is my other github repository for Api Development using Node.js and Express.js\n\nhttps://github.com/fatiq123/Api-Development\n\n\n## Run Locally\n\nClone the project\n\n```bash\n  git clone https://github.com/your-username/Ktor-HTTP.git\n  cd Ktor-HTTP\n```\n\nGo to the project directory\n\n```bash\n  cd Ktor-HTTP\n```\n\n\n\n## Usage/Examples\n\n```Kotlin\n\n                        Application.kt file\n\nimport com.example.plugins.*\nimport io.ktor.server.application.*\nimport io.ktor.server.engine.*\nimport io.ktor.server.netty.*\n\nfun main() {\n    embeddedServer(Netty, port = 8080, host = \"0.0.0.0\", module = Application::module)\n        .start(wait = true)\n}\n\nfun Application.module() {\n    configureRouting()\n}\n\n\n                            Routing.kt file\n\nimport io.ktor.server.application.*\nimport io.ktor.server.response.*\nimport io.ktor.server.routing.*\n\nfun Application.configureRouting() {\n    routing {\n        get(\"/\") {\n            call.respondText(\"Hello World!\")\n        }\n    }\n}\n\n\n```\n\n\n## Tech Stack\n\n**Client:** Ktor-Kotlin\n\n**Server:** Ktor-Http Client\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffatiq123%2Fktor-http","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffatiq123%2Fktor-http","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffatiq123%2Fktor-http/lists"}