Newtonsoft.Json 13.0.4-beta1

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
DHP.Contracts
Package Description
139
DHP.Contracts
Package Description
164
DHP.Contracts
Package Description
167
DHP.Contracts
Package Description
204
DHP.Contracts
Package Description
215
DHP.Contracts
Package Description
273
MassTransit
MassTransit is a message-based distributed application framework for .NET http://masstransit-project.com
423
Microsoft.AspNetCore.Mvc.NewtonsoftJson
ASP.NET Core MVC features that use Newtonsoft.Json. Includes input and output formatters for JSON and JSON PATCH. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/8e941eb42f819adb116b881195158b3887a70a1c
138
Microsoft.AspNetCore.Mvc.NewtonsoftJson
ASP.NET Core MVC features that use Newtonsoft.Json. Includes input and output formatters for JSON and JSON PATCH. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/954f61dd38b33caa2b736c73530bd5a294174437
218
Microsoft.AspNetCore.Mvc.NewtonsoftJson
ASP.NET Core MVC features that use Newtonsoft.Json. Includes input and output formatters for JSON and JSON PATCH. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/b96167fbfe8bd45d94e4dcda42c7d09eb5745459
149
Microsoft.AspNetCore.Mvc.NewtonsoftJson
ASP.NET Core MVC features that use Newtonsoft.Json. Includes input and output formatters for JSON and JSON PATCH. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/c2a442982e736e17ae6bcadbfd8ccba278ee1be6
214
Microsoft.Extensions.DependencyModel
Abstractions for reading `.deps` files.
136
Mpesa.Gate
Package Description
175
Newtonsoft.Json.Bson
Json.NET BSON adds support for reading and writing BSON
153
Newtonsoft.Json.Bson
Json.NET BSON adds support for reading and writing BSON
505
Npgsql.Json.NET
Json.NET plugin for Npgsql, allowing transparent serialization/deserialization of JSON objects directly to and from the database.
140
Npgsql.Json.NET
Json.NET plugin for Npgsql, allowing transparent serialization/deserialization of JSON objects directly to and from the database.
158
NuGet.Packaging
NuGet's understanding of packages. Reading nuspec, nupkgs and package signing.
158
RulesEngine
Rules Engine is a package for abstracting business logic/rules/policies out of the system. This works in a very simple way by giving you an ability to put your rules in a store outside the core logic of the system thus ensuring that any change in rules doesn't affect the core system.
477
Serilog.AspNetCore.Plus
Serilog support for ASP.NET Core logging with some plus features
148

.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.4-beta1 9 07/31/2025
13.0.3 960 02/04/2024
13.0.2 52 02/04/2024
13.0.1 120 02/04/2024
12.0.3 25 07/22/2024
12.0.2 28 07/22/2024
12.0.1 26 07/22/2024
11.0.2 25 07/22/2024
11.0.1 26 07/22/2024
10.0.3 38 07/22/2024
10.0.2 28 07/22/2024
10.0.1 30 07/22/2024
9.0.1 35 04/02/2024
8.0.3 33 07/22/2024
8.0.2 30 07/22/2024
8.0.1 32 07/22/2024
7.0.1 28 07/22/2024
6.0.8 28 07/22/2024
6.0.7 25 07/22/2024
6.0.6 28 07/22/2024
6.0.5 31 07/22/2024
6.0.4 26 07/22/2024
6.0.3 27 07/22/2024
6.0.2 25 07/22/2024
6.0.1 31 07/22/2024
5.0.8 32 07/22/2024
5.0.7 30 07/22/2024
5.0.6 30 07/22/2024
5.0.5 26 07/22/2024
5.0.4 28 07/22/2024
5.0.3 32 07/22/2024
5.0.2 31 07/22/2024
5.0.1 36 07/22/2024
4.5.11 27 07/22/2024
4.5.10 25 07/22/2024
4.5.9 28 07/22/2024
4.5.8 25 07/22/2024
4.5.7 30 07/18/2024
4.5.6 30 07/22/2024
4.5.5 34 07/22/2024
4.5.4 33 07/22/2024
4.5.3 31 07/22/2024
4.5.2 29 07/22/2024
4.5.1 25 07/22/2024
4.0.8 31 07/22/2024
4.0.7 31 07/22/2024
4.0.6 35 07/22/2024
4.0.5 31 07/22/2024
4.0.4 29 07/22/2024
4.0.3 24 07/22/2024
4.0.2 31 07/22/2024
4.0.1 32 07/22/2024
3.5.8 29 07/22/2024