{"id":32553996,"url":"https://github.com/vuon9/postmanizer","last_synced_at":"2025-10-28T21:14:37.754Z","repository":{"id":302217761,"uuid":"1011640675","full_name":"vuon9/postmanizer","owner":"vuon9","description":"A fast CLI tool to merge and convert HTTPie and Postman collections into Postman Collection v2.1.0 format.","archived":false,"fork":false,"pushed_at":"2025-09-26T12:27:11.000Z","size":58,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-26T11:42:21.653Z","etag":null,"topics":["converter","golang","http-client","httpie","httpie-desktop","merger","postman-collection","vibe-coded"],"latest_commit_sha":null,"homepage":"","language":"Go","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/vuon9.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":"2025-07-01T06:09:03.000Z","updated_at":"2025-09-26T12:26:37.000Z","dependencies_parsed_at":"2025-09-26T14:35:46.177Z","dependency_job_id":"41332436-cac5-4032-9e5b-46eea6ffb4bf","html_url":"https://github.com/vuon9/postmanizer","commit_stats":null,"previous_names":["vuon9/httpie-to-postman-converter","vuon9/postmanizer"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/vuon9/postmanizer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vuon9%2Fpostmanizer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vuon9%2Fpostmanizer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vuon9%2Fpostmanizer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vuon9%2Fpostmanizer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vuon9","download_url":"https://codeload.github.com/vuon9/postmanizer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vuon9%2Fpostmanizer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281172318,"owners_count":26455607,"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","status":"online","status_checked_at":"2025-10-26T02:00:06.575Z","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":["converter","golang","http-client","httpie","httpie-desktop","merger","postman-collection","vibe-coded"],"created_at":"2025-10-28T21:14:32.297Z","updated_at":"2025-10-28T21:14:33.081Z","avatar_url":"https://github.com/vuon9.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Postmanzier\n\nA fast CLI tool to merge and convert HTTPie and Postman collections into Postman Collection v2.1.0 format.\n\n## Installation\n\n- Download the latest binary for your OS from the [releases page](https://github.com/vuon9/postmanzier/releases).\n- (Linux/macOS) `chmod +x postmanzier-*`\n- Or build from source:\n  `go build -o postmanzier main.go`\n\n## Usage\n\n### 1. Convert a Single HTTPie Collection\n\nConvert an HTTPie collection to Postman format.\n\n```bash\npostmanzier \u003cinput-httpie-collection.json\u003e \u003coutput-postman-collection.json\u003e\n```\n\n**Input format:**\nHTTPie workspace/collection JSON (see below).\n\n**Output:**\nA Postman v2.1.0 collection file.\n\n**Example:**\n```bash\npostmanzier collection.json output.postman.json\n```\n_Output:_\n```\nMigration completed!\n* Total APIs: 1\n* Total problematic APIs: 0\n* Total variables: 0\n--\u003e Output file: output.postman.json\n```\n\n**Supported input format:**\n```json\n{\n  \"meta\": { \"format\": \"httpie\", \"version\": \"1.0.0\" },\n  \"entry\": { \"name\": \"Collection Name\", \"requests\": [...] }\n}\n```\n\n---\n\n### 2. Merge Multiple Collections\n\nMerge multiple HTTPie or Postman collections into a single Postman collection.\nThe tool auto-detects the format from the first input file.\n\n```bash\npostmanzier merge \u003coutput-file.json\u003e \u003cinput1.json\u003e \u003cinput2.json\u003e ...\n```\n\n- Each input collection becomes a folder in the output.\n- Variables are merged and deduplicated.\n\n**Examples:**\n\n_Merge HTTPie collections:_\n```bash\npostmanzier merge merged-httpie.postman.json collection1.json collection2.json\n```\n_Output:_\n```\nHTTPie collections merge completed!\n--\u003e Output file: merged-httpie.postman.json\n```\n\n_Merge Postman collections:_\n```bash\npostmanzier merge merged-postman.postman.json postman_collection1.json postman_collection2.json\n```\n_Output:_\n```\nPostman collections merge completed!\n--\u003e Output file: merged-postman.postman.json\n```\n\n**Supported input formats:**\n\n- HTTPie: see above.\n- Postman v2.1.0:\n  ```json\n  {\n    \"info\": { \"_postman_id\": \"...\", \"name\": \"Collection Name\", \"schema\": \"https://schema.getpostman.com/json/collection/v2.1.0/collection.json\" },\n    \"item\": [...],\n    \"variable\": [...]\n  }\n  ```\n\n**Output:**\nAlways Postman Collection v2.1.0.\n\n---\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvuon9%2Fpostmanizer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvuon9%2Fpostmanizer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvuon9%2Fpostmanizer/lists"}