# Audit NuGet JSON serialization packages

**Use case:** 

Compare JSON serialization packages on NuGet by downloads, verified status, authors, tags, license URLs, and project links.

## Input

```json
{
  "mode": "search",
  "searchQuery": "json serializer",
  "packageIds": [
    "Newtonsoft.Json",
    "Serilog",
    "AutoMapper"
  ],
  "maxResults": 100,
  "includePrerelease": true,
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "id": {
    "label": "Package ID",
    "format": "text"
  },
  "version": {
    "label": "Version",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "totalDownloads": {
    "label": "Total Downloads",
    "format": "number"
  },
  "authors": {
    "label": "Authors",
    "format": "text"
  },
  "verified": {
    "label": "Verified",
    "format": "text"
  },
  "tags": {
    "label": "Tags",
    "format": "text"
  },
  "packageUrl": {
    "label": "Package URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [NuGet Scraper](https://apify.com/automation-lab/nuget-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/nuget-scraper) to learn more, explore other use cases, and run it yourself.