{"id":15481597,"url":"https://github.com/libninjacom/postman-rs","last_synced_at":"2026-05-10T07:52:15.908Z","repository":{"id":60460115,"uuid":"543331948","full_name":"libninjacom/postman-rs","owner":"libninjacom","description":"Postman client, generated from the OpenAPI spec","archived":false,"fork":false,"pushed_at":"2022-11-27T17:11:15.000Z","size":101,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-11T03:58:49.780Z","etag":null,"topics":["openapi","postman","rust"],"latest_commit_sha":null,"homepage":"https://docs.rs/postman-api/","language":"Rust","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/libninjacom.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-09-29T21:50:28.000Z","updated_at":"2024-11-17T16:40:10.000Z","dependencies_parsed_at":"2023-01-22T19:16:19.148Z","dependency_job_id":null,"html_url":"https://github.com/libninjacom/postman-rs","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/libninjacom/postman-rs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libninjacom%2Fpostman-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libninjacom%2Fpostman-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libninjacom%2Fpostman-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libninjacom%2Fpostman-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/libninjacom","download_url":"https://codeload.github.com/libninjacom/postman-rs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libninjacom%2Fpostman-rs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279013591,"owners_count":26085389,"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-13T02:00:06.723Z","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":["openapi","postman","rust"],"created_at":"2024-10-02T05:05:05.342Z","updated_at":"2025-10-13T04:10:25.633Z","avatar_url":"https://github.com/libninjacom.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv id=\"top\"\u003e\u003c/div\u003e\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://github.com/libninjacom/postman-rs/stargazers\"\u003e\n        \u003cimg src=\"https://img.shields.io/github/stars/libninjacom/postman-rs.svg?style=flat-square\" alt=\"Stars\" /\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://github.com/libninjacom/postman-rs/actions\"\u003e\n        \u003cimg src=\"https://img.shields.io/github/workflow/status/libninjacom/postman-rs/ci?style=flat-square\" alt=\"Build Status\" /\u003e\n    \u003c/a\u003e\n    \n\u003ca href=\"https://crates.io/crates/postman\"\u003e\n    \u003cimg src=\"https://img.shields.io/crates/d/postman?style=flat-square\" alt=\"Downloads\" /\u003e\n\u003c/a\u003e\n\u003ca href=\"https://crates.io/crates/postman\"\u003e\n    \u003cimg src=\"https://img.shields.io/crates/v/postman?style=flat-square\" alt=\"Crates.io\" /\u003e\n\u003c/a\u003e\n\n\u003c/p\u003e\n\nPostman client, generated from the OpenAPI spec.\n\n# Usage\n\n```rust\nuse postman::PostmanClient;\nuse postman::model::*;\n#[tokio::main]\nasync fn main() {\n    let client = PostmanClient::from_env();\n    let response = client\n        .get_all_apis()\n        .workspace(\"your workspace\")\n        .since(\"your since\")\n        .until(\"your until\")\n        .created_by(\"your created by\")\n        .updated_by(\"your updated by\")\n        .is_public(true)\n        .name(\"your name\")\n        .summary(\"your summary\")\n        .description(\"your description\")\n        .sort(\"your sort\")\n        .direction(\"your direction\")\n        .send()\n        .await\n        .unwrap();\n    println!(\"{:#?}\", response);\n}\n\n```\n\nThis example loads configuration from environment variables, specifically:\n\n* `POSTMAN_API_KEY`\n\n\n\n# Installation\n\nAdd this to your Cargo.toml:\n\n```toml\n[dependencies]\npostman = \"1.0.0\"\n```\n\n\n# Documentation\n\n\n* [API Documentation](https://www.postman.com/postman/workspace/postman-public-workspace/documentation/12959542-c8142d51-e97c-46b6-bd77-52bb66712c9a)\n\n\n* [Client Library Documentation](https://docs.rs/postman)\n\n\nYou can see working examples of every API call in the `examples/` directory.\n\n# Contributing\n\nContributions are welcome!\n\n*Library created with [Libninja](https://www.libninja.com).*\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibninjacom%2Fpostman-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flibninjacom%2Fpostman-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibninjacom%2Fpostman-rs/lists"}