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: 7 months 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 (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-04-25T15:36:29.000Z (9 months ago)
- Last Synced: 2025-06-12T01:43:59.666Z (8 months 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 PostmanCollectionReader
dotnet 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/).**