{"id":51509496,"url":"https://github.com/murphsicles/ureq","last_synced_at":"2026-07-08T04:30:56.602Z","repository":{"id":362042180,"uuid":"1257002161","full_name":"murphsicles/ureq","owner":"murphsicles","description":"Minimal blocking HTTP client for Zeta","archived":false,"fork":false,"pushed_at":"2026-06-02T09:47:14.000Z","size":62,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-02T11:18:53.640Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/murphsicles.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-06-02T09:19:33.000Z","updated_at":"2026-06-02T09:47:18.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/murphsicles/ureq","commit_stats":null,"previous_names":["murphsicles/ureq"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/murphsicles/ureq","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/murphsicles%2Fureq","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/murphsicles%2Fureq/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/murphsicles%2Fureq/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/murphsicles%2Fureq/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/murphsicles","download_url":"https://codeload.github.com/murphsicles/ureq/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/murphsicles%2Fureq/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35252324,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-08T02:00:06.796Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2026-07-08T04:30:56.071Z","updated_at":"2026-07-08T04:30:56.593Z","avatar_url":"https://github.com/murphsicles.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# ⚡ @net/ureq — Minimal Blocking HTTP Client for Zeta\n\n**Port of the Rust `ureq` crate (v2.x). Synchronous HTTP/1.1 client.**\n**No async runtime. No TLS yet. Just simple blocking requests.**\n\n---\n\n## 📦 Package\n\n```\nzorbs add @net/ureq\n```\n\n## 🔧 API\n\n### One-Shot Requests\n\n```zeta\n// Simple GET\nlet resp = ureq::get(\"http://example.com/api/data\");\nlet body = resp.body;  // Vec\u003cu8\u003e\nlet status = resp.status.code;\n\n// Simple POST\nlet resp = ureq::post(\"http://api.example.com/submit\", \"hello world\");\n```\n\n### Agent (shared configuration)\n\n```zeta\nlet mut agent = Agent::new();\nagent.set(\"User-Agent\", \"my-zeta-app/1.0\");\nagent.timeout_ms(10000);\n\nlet resp = agent.get(\"http://api.example.com/data\").call();\nlet resp = agent.post(\"http://api.example.com/submit\")\n    .set(\"Content-Type\", \"application/json\")\n    .send_string(\"{\\\"key\\\": \\\"value\\\"}\")\n    .call();\n```\n\n### Response\n\n```zeta\nif resp.status.is_success() {\n    let body_str = resp.body as str;\n    let content_type = resp.headers.get(\"Content-Type\");\n}\n```\n\n## 📦 What's Inside\n\n| Feature | Status |\n|---|---|\n| GET / POST / PUT / DELETE / PATCH / HEAD | ✅ |\n| Custom headers | ✅ |\n| Timeouts | ✅ |\n| URL parsing | ✅ |\n| Response parsing | ✅ |\n| Chunked transfer | 🔜 |\n| HTTPS/TLS | 🔜 (planned) |\n| Connection pooling | 🔜 (planned) |\n| Redirect following | 🔜 (planned) |\n| Cookie support | 🔜 (planned) |\n\n## 📄 License\n\nMIT OR Apache-2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmurphsicles%2Fureq","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmurphsicles%2Fureq","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmurphsicles%2Fureq/lists"}