# Search NuGet logging packages

**Use case:** 

Find popular .NET logging libraries on NuGet with versions, download counts, authors, tags, license links, and package URLs.

## Input

```json
{
  "mode": "search",
  "searchQuery": "logging",
  "packageIds": [
    "Newtonsoft.Json",
    "Serilog",
    "AutoMapper"
  ],
  "maxResults": 50,
  "includePrerelease": false,
  "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.