{"id":16678924,"url":"https://github.com/joncloud/https","last_synced_at":"2026-03-10T14:34:19.309Z","repository":{"id":56382854,"uuid":"152809163","full_name":"joncloud/https","owner":"joncloud","description":"Simple CLI for sending HTTP requests","archived":false,"fork":false,"pushed_at":"2020-11-11T03:40:05.000Z","size":82,"stargazers_count":9,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"publish","last_synced_at":"2025-11-14T13:25:11.523Z","etag":null,"topics":["cli","http","http-client","https","request","simple"],"latest_commit_sha":null,"homepage":"","language":"C#","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/joncloud.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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}},"created_at":"2018-10-12T21:24:37.000Z","updated_at":"2022-04-19T06:33:24.000Z","dependencies_parsed_at":"2022-08-15T17:40:46.638Z","dependency_job_id":null,"html_url":"https://github.com/joncloud/https","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/joncloud/https","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joncloud%2Fhttps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joncloud%2Fhttps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joncloud%2Fhttps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joncloud%2Fhttps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/joncloud","download_url":"https://codeload.github.com/joncloud/https/tar.gz/refs/heads/publish","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joncloud%2Fhttps/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30337299,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T12:41:07.687Z","status":"ssl_error","status_checked_at":"2026-03-10T12:41:06.728Z","response_time":106,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["cli","http","http-client","https","request","simple"],"created_at":"2024-10-12T13:32:00.731Z","updated_at":"2026-03-10T14:34:19.274Z","avatar_url":"https://github.com/joncloud.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# https\n[![NuGet](https://img.shields.io/nuget/v/https.svg)](https://www.nuget.org/packages/https/)\n[![Build Status](https://dev.azure.com/joncloud/joncloud-github/_apis/build/status/joncloud.https?branchName=publish)](https://dev.azure.com/joncloud/joncloud-github/_build/latest?definitionId=13\u0026branchName=publish)\n\n## Description\n`https` is a simple CLI for sending HTTP requests.\n\n## Licensing\nReleased under the MIT License. See the [LICENSE][] File for further details.\n\n[license]: LICENSE.md\n\n## Installation\nInstall `https` as a global .NET tool using\n```bash\ndotnet tool install --global https --version 0.3.0-*\n```\n\n## Usage\nUrls without a protocol, i.e., `http://` or `https://`, by default will be assigns the `https://` protocol.\n\n```bash\nUsage: https \u003cMETHOD\u003e \u003cURI\u003e [options] [content]\n\nSubmits HTTP requests. For example https put httpbin.org/put hello=world\n\nArguments:\n  \u003cMETHOD\u003e    HTTP method, i.e., get, head, post\n  \u003cURI\u003e       URI to send the request to. Leaving the protocol off the URI defaults to https://\n\nOptions:\n  --form                Renders the content arguments as application/x-www-form-urlencoded\n  --help                Show command line help.\n  --ignore-certificate  Prevents server certificate validation.\n  --json                Renders the content arguments as application/json.\n  --timeout=\u003cVALUE\u003e     Sets the timeout of the request using System.TimeSpan.TryParse (https://docs.microsoft.com/en-us/dotnet/api/system.timespan.parse)\n  --version             Displays the application verison.\n  --xml=\u003cROOT_NAME\u003e     Renders the content arguments as application/xml using the optional xml root name.\n  --stop-auto-redirects Prevents redirects from automatically being processed.\n\nContent:\nRepeat as many content arguments to create content sent with the HTTP request. Alternatively pipe raw content send as the HTTP request content.\n  \u003cKEY\u003e=\u003cVALUE\u003e\n\nHeaders:\nRepeat as many header arguments to assign headers for the HTTP request.\n  \u003cKEY\u003e:\u003cVALUE\u003e\n```\n\nFor example `https put httpbin.org/put hello=world` will output:\n```\nHTTP/1.1 200 OK\nConnection: keep-alive\nServer: gunicorn/19.9.0\nDate: Sat, 13 Oct 2018 03:09:13 GMT\nAccess-Control-Allow-Origin: *\nAccess-Control-Allow-Credentials: true\nVia: 1.1 vegur\nContent-Type: application/json\nContent-Length: 423\n{\n  \"args\": {},\n  \"data\": \"{\\\"hello\\\":\\\"world\\\"}\",\n  \"files\": {},\n  \"form\": {},\n  \"headers\": {\n    \"Connection\": \"close\",\n    \"Content-Length\": \"17\",\n    \"Content-Type\": \"application/json; charset=utf-8\",\n    \"Host\": \"httpbin.org\",\n    \"User-Agent\": \"dotnet-https/0.1.1.0\",\n    \"X-Content\": \"content-x\"\n  },\n  \"json\": {\n    \"hello\": \"world\"\n  },\n  \"origin\": \"50.53.112.92\",\n  \"url\": \"https://httpbin.org/put\"\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoncloud%2Fhttps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoncloud%2Fhttps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoncloud%2Fhttps/lists"}