Newtonsoft.Json 13.0.2-beta2
Json.NET
Json.NET is a popular high-performance JSON framework for .NET
Serialize JSON
Product product = new Product();
product.Name = "Apple";
product.Expiry = new DateTime(2008, 12, 28);
product.Sizes = new string[] { "Small" };
string json = JsonConvert.SerializeObject(product);
// {
// "Name": "Apple",
// "Expiry": "2008-12-28T00:00:00",
// "Sizes": [
// "Small"
// ]
// }
Deserialize JSON
string json = @"{
'Name': 'Bad Boys',
'ReleaseDate': '1995-4-7T00:00:00',
'Genres': [
'Action',
'Comedy'
]
}";
Movie m = JsonConvert.DeserializeObject<Movie>(json);
string name = m.Name;
// Bad Boys
LINQ to JSON
JArray array = new JArray();
array.Add("Manual text");
array.Add(new DateTime(2000, 5, 23));
JObject o = new JObject();
o["MyArray"] = array;
string json = o.ToString();
// {
// "MyArray": [
// "Manual text",
// "2000-05-23T00:00:00"
// ]
// }
Links
Showing the top 20 packages that depend on Newtonsoft.Json.
| Packages | Downloads |
|---|---|
|
NuGet.Packaging
NuGet's implementation for reading nupkg package and nuspec package specification files.
|
178 |
|
Google.Apis
The Google APIs Client Library is a runtime client for working with Google services.
The library supports service requests, media upload and download, etc.
Supported Platforms:
- .NET Framework 4.5+
- NetStandard1.3
|
177 |
|
Google.Apis
The Google APIs Client Library is a runtime client for working with Google services.
The library supports service requests, media upload and download, etc.
Supported Platforms:
- .NET Framework 4.5+
- NetStandard1.3, providing .NET Core support
|
175 |
|
NuGet.Protocol.Core.v3
NuGet Protocol for 3.1.0 servers
|
168 |
|
Microsoft.AspNetCore.Mvc.ViewFeatures
ASP.NET Core MVC view rendering features. Contains common types used in most MVC applications as well as view rendering features such as view engines, views, view components, and HTML helpers.
Commonly used types:
Microsoft.AspNetCore.Mvc.Controller
Microsoft.AspNetCore.Mvc.ValidateAntiForgeryTokenAttribute
Microsoft.AspNetCore.Mvc.ViewComponent
|
166 |
|
Google.Apis
The Google APIs Client Library is a runtime client for working with Google services.
The library supports service requests, media upload and download, etc.
Supported Platforms:
- .NET Framework 4.5+
- NetStandard1.3, providing .NET Core support
|
166 |
|
Google.Apis
The Google APIs Client Library is a runtime client for working with Google services.
The library supports service requests, media upload and download, etc.
Supported Platforms:
- .NET Framework 4.5+
- NetStandard1.3, providing .NET Core support
|
165 |
|
Google.Apis
The Google APIs Client Library is a runtime client for working with Google services.
The library supports service requests, media upload and download, etc.
Supported Platforms:
- .NET Framework 4.5+
- NetStandard1.3, providing .NET Core support
|
164 |
|
Google.Apis.Core
The Google APIs Core Library contains the Google APIs HTTP layer, JSON support, Data-store, logging and so on.
Supported Platforms:
- .NET Framework 4.5+
- NetStandard1.3, providing .NET Core support
|
161 |
|
Google.Apis
The Google APIs Client Library is a runtime client for working with Google services.
The library supports service requests, media upload and download, etc.
Supported Platforms:
- .NET Framework 4.5+
- NetStandard1.3, providing .NET Core support
|
161 |
|
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/a4938d07a5127ffad8466ddf703a6b5b21f4b0c9
|
158 |
|
NuGet.ProjectModel
NuGet client library.
|
158 |
|
MiniProfiler.Shared
You shouldn't reference this - MiniProfiler's shared library for all frameworks
|
157 |
|
Microsoft.AspNetCore.Mvc.ViewFeatures
ASP.NET Core MVC view rendering features. Contains common types used in most MVC applications as well as view rendering features such as view engines, views, view components, and HTML helpers.
Commonly used types:
Microsoft.AspNetCore.Mvc.Controller
Microsoft.AspNetCore.Mvc.ValidateAntiForgeryTokenAttribute
Microsoft.AspNetCore.Mvc.ViewComponent
|
157 |
|
Microsoft.VisualStudio.Web.CodeGeneration.Contracts
Contains interfaces for Project Model and messaging for scaffolding.
This package was built from the source code at https://github.com/aspnet/scaffolding/tree/a8a3c4d6bcef48a3dd464d03f629a0a18dbf3110
|
156 |
|
Google.Apis
The Google APIs Client Library is a runtime client for working with Google services.
The library supports service requests, media upload and download, etc.
Supported Platforms:
- .NET Framework 4.5+
- NetStandard1.3, providing .NET Core support
|
155 |
|
Google.Apis.Core
The Google APIs Core Library contains the Google APIs HTTP layer, JSON support, Data-store, logging and so on.
Supported Platforms:
- .NET Framework 4
- Windows Store apps
- Windows Phone 8 and 8.1
- Portable Class Libraries
|
155 |
.NET Framework 2.0
- No dependencies.
.NET Standard 2.0
- No dependencies.
.NET 6.0
- No dependencies.
.NET Standard 1.3
- System.Xml.XmlDocument (>= 4.3.0)
- System.Runtime.Serialization.Formatters (>= 4.3.0)
- System.ComponentModel.TypeConverter (>= 4.3.0)
- NETStandard.Library (>= 1.6.1)
- Microsoft.CSharp (>= 4.3.0)
- System.Runtime.Serialization.Primitives (>= 4.3.0)
.NET Standard 1.0
- System.ComponentModel.TypeConverter (>= 4.3.0)
- NETStandard.Library (>= 1.6.1)
- Microsoft.CSharp (>= 4.3.0)
- System.Runtime.Serialization.Primitives (>= 4.3.0)
.NET Framework 4.5
- No dependencies.
.NET Framework 4.0
- No dependencies.
.NET Framework 3.5
- No dependencies.
| Version | Downloads | Last updated |
|---|---|---|
| 13.0.5-beta1 | 12 | 12/30/2025 |
| 13.0.4 | 60 | 9/17/2025 |
| 13.0.4-beta1 | 71 | 8/1/2025 |
| 13.0.3 | 167 | 5/17/2023 |
| 13.0.3-beta1 | 146 | 2/23/2023 |
| 13.0.2 | 154 | 11/30/2022 |
| 13.0.2-beta3 | 138 | 12/4/2022 |
| 13.0.2-beta2 | 129 | 9/15/2022 |
| 13.0.2-beta1 | 134 | 5/21/2022 |
| 13.0.1 | 167 | 6/27/2022 |
| 12.0.3 | 134 | 6/27/2022 |
| 12.0.2 | 135 | 5/21/2022 |
| 12.0.1 | 137 | 5/21/2022 |
| 11.0.2 | 131 | 6/27/2022 |
| 11.0.1 | 168 | 6/4/2022 |
| 10.0.3 | 159 | 6/7/2022 |
| 10.0.2 | 151 | 5/21/2022 |
| 10.0.1 | 132 | 6/27/2022 |
| 9.0.1 | 118 | 6/19/2022 |
| 8.0.3 | 142 | 6/27/2022 |
| 8.0.2 | 133 | 5/20/2022 |
| 8.0.1 | 141 | 6/11/2022 |
| 7.0.1 | 148 | 5/20/2022 |
| 6.0.8 | 122 | 5/20/2022 |
| 6.0.7 | 146 | 6/27/2022 |
| 6.0.6 | 156 | 6/27/2022 |
| 6.0.5 | 128 | 6/27/2022 |
| 6.0.4 | 154 | 5/21/2022 |
| 6.0.3 | 160 | 6/27/2022 |
| 6.0.2 | 118 | 6/7/2022 |
| 6.0.1 | 131 | 6/25/2022 |
| 5.0.8 | 136 | 5/28/2022 |
| 5.0.7 | 120 | 6/27/2022 |
| 5.0.6 | 136 | 6/11/2022 |
| 5.0.5 | 141 | 6/27/2022 |
| 5.0.4 | 134 | 6/27/2022 |
| 5.0.3 | 128 | 6/27/2022 |
| 5.0.2 | 140 | 6/27/2022 |
| 5.0.1 | 170 | 6/19/2022 |
| 4.5.11 | 128 | 6/27/2022 |
| 4.5.10 | 121 | 6/27/2022 |
| 4.5.9 | 132 | 6/27/2022 |
| 4.5.8 | 161 | 5/21/2022 |
| 4.5.7 | 146 | 6/27/2022 |
| 4.5.6 | 129 | 6/27/2022 |
| 4.5.5 | 140 | 6/27/2022 |
| 4.5.4 | 157 | 5/28/2022 |
| 4.5.3 | 142 | 5/21/2022 |
| 4.5.2 | 167 | 5/21/2022 |
| 4.5.1 | 151 | 5/20/2022 |
| 4.0.8 | 146 | 6/27/2022 |
| 4.0.7 | 134 | 6/27/2022 |
| 4.0.6 | 155 | 5/30/2022 |
| 4.0.5 | 140 | 6/27/2022 |
| 4.0.4 | 117 | 6/27/2022 |
| 4.0.3 | 140 | 5/21/2022 |
| 4.0.2 | 127 | 6/27/2022 |
| 4.0.1 | 157 | 5/21/2022 |
| 3.5.8 | 135 | 6/4/2022 |