https://github.com/hamedfathi/postmancollectionreader
A library to read Postman Collection v2.1 Json files.
https://github.com/hamedfathi/postmancollectionreader
csharp dotnet json newtonsoft-json postman postman-collection
Last synced: 23 days ago
JSON representation
A library to read Postman Collection v2.1 Json files.
- Host: GitHub
- URL: https://github.com/hamedfathi/postmancollectionreader
- Owner: HamedFathi
- License: mit
- Created: 2022-03-24T17:42:48.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-25T15:36:29.000Z (2 months ago)
- Last Synced: 2025-05-26T21:04:52.001Z (about 1 month ago)
- Topics: csharp, dotnet, json, newtonsoft-json, postman, postman-collection
- Language: C#
- Homepage:
- Size: 43.9 KB
- Stars: 6
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README

> Postman is an API platform for building and using APIs. Postman simplifies each step of the API lifecycle and streamlines collaboration so you can create better APIs—faster.
This library helps you to read a `Postman Collection v2.1` json file in C#.
### [Nuget](https://www.nuget.org/packages/PostmanCollectionReader)
[](https://opensource.org/licenses/MIT)

```
Install-Package PostmanCollectionReaderdotnet add package PostmanCollectionReader
```### Usage
```cs
using PostmanCollectionReader;
var postmanCollection = PostmanCollection.FromJson(jsonString);
var environment = PostmanCollection.EnvironmentFromJson(jsonString);
```---
**Based on `Postman Collection Format v2.1.0 Draft 07` schema and [QuickType](https://app.quicktype.io/).**