{"id":22342602,"url":"https://github.com/aarcex3/crul","last_synced_at":"2026-05-05T11:37:16.614Z","repository":{"id":262183846,"uuid":"886466331","full_name":"aarcex3/crul","owner":"aarcex3","description":"A mini curl copy in crystal","archived":false,"fork":false,"pushed_at":"2024-11-11T13:18:50.000Z","size":27,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-31T11:13:49.225Z","etag":null,"topics":["command-line","crystal","curl","http","http-client","terminal"],"latest_commit_sha":null,"homepage":"","language":"Crystal","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/aarcex3.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-11-11T02:52:32.000Z","updated_at":"2025-01-13T12:30:03.000Z","dependencies_parsed_at":"2024-11-11T03:30:14.762Z","dependency_job_id":"3032e04f-6704-4b9b-822c-a07766d18bfd","html_url":"https://github.com/aarcex3/crul","commit_stats":null,"previous_names":["aarcex3/crul"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aarcex3%2Fcrul","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aarcex3%2Fcrul/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aarcex3%2Fcrul/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aarcex3%2Fcrul/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aarcex3","download_url":"https://codeload.github.com/aarcex3/crul/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245630901,"owners_count":20647168,"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":["command-line","crystal","curl","http","http-client","terminal"],"created_at":"2024-12-04T08:13:08.374Z","updated_at":"2026-05-05T11:37:16.565Z","avatar_url":"https://github.com/aarcex3.png","language":"Crystal","funding_links":[],"categories":[],"sub_categories":[],"readme":"# crul\n\nThis is a fork of the original [crul](https://github.com/porras/crul) by [Sergio Gil](https://github.com/porras):\n\n\u003e Crul is a [curl](http://curl.haxx.se/) replacement, that is, it's a command line\nHTTP client. It has fewer features and options, but it aims to be more user\nfriendly. It's heavily inspired by\n[httpie](https://github.com/jakubroztocil/httpie). It's written in the [Crystal](http://crystal-lang.org/) language.\n\n## Installation\n\nTODO: Write installation instructions here\n\n## Usage\n\n    Usage: crul [method] URL [options]\n\n    HTTP methods (default: GET):\n        get, GET                         Use GET\n        post, POST                       Use POST\n        put, PUT                         Use PUT\n        delete, DELETE                   Use DELETE\n\n    HTTP options:\n        -d DATA, --data DATA             Request body\n        -d @file, --data @file           Request body (read from file)\n        -H HEADER, --header HEADER       Set header\n        -a USER:PASS, --auth USER:PASS   Basic auth\n        -c FILE, --cookies FILE          Use FILE as cookie store (reads and writes)\n\n    Response formats (default: autodetect):\n        -j, --json                       Format response as JSON\n        -x, --xml                        Format response as XML\n        -p, --plain                      Format response as plain text\n\n    Other options:\n        -h, --help                       Show this help\n        -V, --version                    Display version\n\n## Examples\n\n### GET request\n\n    $ crul http://httpbin.org/get?a=b\n    HTTP/1.1 200 OK\n    Server: nginx\n    Date: Wed, 11 Mar 2015 07:57:33 GMT\n    Content-type: application/json\n    Content-length: 179\n    Connection: keep-alive\n    Access-control-allow-origin: *\n    Access-control-allow-credentials: true\n\n    {\n      \"args\": {\n        \"a\": \"b\"\n      },\n      \"headers\": {\n        \"Content-Length\": \"0\",\n        \"Host\": \"httpbin.org\"\n      },\n      \"origin\": \"188.103.25.204\",\n      \"url\": \"http://httpbin.org/get?a=b\"\n    }\n\n### PUT request\n\n    $ crul put http://httpbin.org/put -d '{\"a\":\"b\"}' -H Content-Type:application/json\n    HTTP/1.1 200 OK\n    Server: nginx\n    Date: Wed, 11 Mar 2015 07:58:54 GMT\n    Content-type: application/json\n    Content-length: 290\n    Connection: keep-alive\n    Access-control-allow-origin: *\n    Access-control-allow-credentials: true\n\n    {\n      \"args\": {},\n      \"data\": \"{\\\"a\\\":\\\"b\\\"}\",\n      \"files\": {},\n      \"form\": {},\n      \"headers\": {\n        \"Content-Length\": \"9\",\n        \"Content-Type\": \"application/json\",\n        \"Host\": \"httpbin.org\"\n      },\n      \"json\": {\n        \"a\": \"b\"\n      },\n      \"origin\": \"188.103.25.204\",\n      \"url\": \"http://httpbin.org/put\"\n    }\n\n## Development\n\nTODO: Write development instructions here\n\n## Roadmap\n\n- Continue from where the original repo left off\n- Implement new features\n\n## Contributing\n\n1. Fork it (\u003chttps://github.com/your-github-user/crul/fork\u003e)\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create a new Pull Request\n\n## Contributors\n\n- [Sergio Gil](https://github.com/porras) - author\n- [Agustin Arce](https://github.com/aarcex3) - maintainer\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faarcex3%2Fcrul","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faarcex3%2Fcrul","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faarcex3%2Fcrul/lists"}