{"id":19075816,"url":"https://github.com/xenoken/quickrest","last_synced_at":"2025-07-01T04:04:53.826Z","repository":{"id":236039885,"uuid":"88367574","full_name":"xenoken/QuickRest","owner":"xenoken","description":"Simplest and Quickest REST Library","archived":false,"fork":false,"pushed_at":"2018-10-13T21:47:19.000Z","size":26,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-22T04:44:28.635Z","etag":null,"topics":["dotnet","quick","rest","rest-api","simple","vbnet"],"latest_commit_sha":null,"homepage":"","language":"Visual Basic","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/xenoken.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"License.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2017-04-15T18:46:11.000Z","updated_at":"2018-10-13T21:47:20.000Z","dependencies_parsed_at":"2024-04-25T12:27:30.723Z","dependency_job_id":"1fd2c34c-9171-471c-9bb6-ab5cdf9f13c9","html_url":"https://github.com/xenoken/QuickRest","commit_stats":null,"previous_names":["xenoken/quickrest"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/xenoken/QuickRest","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xenoken%2FQuickRest","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xenoken%2FQuickRest/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xenoken%2FQuickRest/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xenoken%2FQuickRest/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xenoken","download_url":"https://codeload.github.com/xenoken/QuickRest/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xenoken%2FQuickRest/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262893634,"owners_count":23380710,"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":["dotnet","quick","rest","rest-api","simple","vbnet"],"created_at":"2024-11-09T01:56:05.163Z","updated_at":"2025-07-01T04:04:53.796Z","avatar_url":"https://github.com/xenoken.png","language":"Visual Basic","funding_links":[],"categories":[],"sub_categories":[],"readme":"# QuickRest [![Codacy Badge](https://api.codacy.com/project/badge/Grade/6d1e128f286d452cbbeba5d25795e3a4)](https://app.codacy.com/app/xenoken/QuickRest?utm_source=github.com\u0026utm_medium=referral\u0026utm_content=xenoken/QuickRest\u0026utm_campaign=Badge_Grade_Dashboard)[![Build status](https://ci.appveyor.com/api/projects/status/h762wn0j57f5wvyx?svg=true)](https://ci.appveyor.com/project/xenoken/quickrest)\n\nThe simplest and quickest way to build and send REST requests.\n\n## Getting Started\n\nQuickRest helps developers to compose REST requests very easily.\n\nAs an example, here is the most basic REST request achievable with QuickRest:\n\n```cs\nusing QuickRest;\nRequest request = new Request(\"http://www.ExampleWebsite.com\");\nrequest.Send();\n```\nand that's it! Your request has been sent successfully! Yes!\n\nOK... but how do I get a response to my request?\n\nWith QuickRest, that's easy too.\n\nRequest.Send() is an asynchronous method, and will not block the code flow.\n\nTo get a response, subscribe to the *OnResponse* event of a request instance before sending it, and wait for the response to arrive.\n\nIt is that simple!\n\n```cs\nusing QuickRest\nRequest r = new Request(\"http://www.ExampleWebsite.com\");\n\n'in order to get an answer for your request\nr.OnResponse += OnResponseCallback;\n\nr.Send();\n\npublic void OnResponseCallback(Request _request,Response _response)\n{\n  // some_code_here...\n}\n```\n\n## Notes\n  - By default, QuickRest uses the GET method for requests.\n  - QuickRest targets .NET Framework 2.0.\n\n\n## ChangeLog\n\n  - Version *1.0*\n  \n        QuickRest First Version\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxenoken%2Fquickrest","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxenoken%2Fquickrest","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxenoken%2Fquickrest/lists"}