Newtonsoft.Json 13.0.2-beta3

Logo Json.NET

NuGet version (Newtonsoft.Json) Build status

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"
//   ]
// }

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.
185
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
182
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
180
NuGet.Protocol.Core.v3
NuGet Protocol for 3.1.0 servers
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
171
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
171
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
168
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
167
Microsoft.VisualStudio.Web.CodeGeneration.Contracts
Contains interfaces for Project Model and messaging for scaffolding.
167
MiniProfiler.Shared
You shouldn't reference this - MiniProfiler's shared library for all frameworks
166
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
165
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
165
Google.Apis.Auth
The Google APIs Client Library is a runtime client for working with Google services. This package includes auth components like user-credential, authorization code flow, etc. for making authenticated calls using the OAuth2 spec. Supported Platforms: - .NET Framework 4.5 - NetStandard1.3 - Windows Store apps - Windows Phone 8 and 8.1 - Portable Class Libraries
163
NuGet.ProjectModel
NuGet client library.
163
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
163
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
162
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
162
Newtonsoft.Json.Bson
Json.NET BSON adds support for reading and writing BSON
161

.NET Framework 2.0

  • No dependencies.

.NET Standard 2.0

  • No dependencies.

.NET 6.0

  • No dependencies.

.NET Standard 1.3

.NET Standard 1.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 19 12/30/2025
13.0.4 63 9/17/2025
13.0.4-beta1 81 8/1/2025
13.0.3 172 5/17/2023
13.0.3-beta1 154 2/23/2023
13.0.2 158 11/30/2022
13.0.2-beta3 146 12/4/2022
13.0.2-beta2 137 9/15/2022
13.0.2-beta1 141 5/21/2022
13.0.1 174 6/27/2022
12.0.3 141 6/27/2022
12.0.2 142 5/21/2022
12.0.1 142 5/21/2022
11.0.2 135 6/27/2022
11.0.1 177 6/4/2022
10.0.3 167 6/7/2022
10.0.2 159 5/21/2022
10.0.1 140 6/27/2022
9.0.1 123 6/19/2022
8.0.3 145 6/27/2022
8.0.2 138 5/20/2022
8.0.1 146 6/11/2022
7.0.1 152 5/20/2022
6.0.8 130 5/20/2022
6.0.7 152 6/27/2022
6.0.6 162 6/27/2022
6.0.5 133 6/27/2022
6.0.4 161 5/21/2022
6.0.3 167 6/27/2022
6.0.2 124 6/7/2022
6.0.1 135 6/25/2022
5.0.8 140 5/28/2022
5.0.7 126 6/27/2022
5.0.6 142 6/11/2022
5.0.5 150 6/27/2022
5.0.4 140 6/27/2022
5.0.3 134 6/27/2022
5.0.2 148 6/27/2022
5.0.1 178 6/19/2022
4.5.11 136 6/27/2022
4.5.10 129 6/27/2022
4.5.9 140 6/27/2022
4.5.8 167 5/21/2022
4.5.7 155 6/27/2022
4.5.6 133 6/27/2022
4.5.5 147 6/27/2022
4.5.4 161 5/28/2022
4.5.3 150 5/21/2022
4.5.2 170 5/21/2022
4.5.1 157 5/20/2022
4.0.8 152 6/27/2022
4.0.7 139 6/27/2022
4.0.6 161 5/30/2022
4.0.5 147 6/27/2022
4.0.4 122 6/27/2022
4.0.3 148 5/21/2022
4.0.2 132 6/27/2022
4.0.1 163 5/21/2022
3.5.8 141 6/4/2022