# Artifact Hub Helm Charts Scraper

**Use case:** 

Scrape Artifact Hub Helm chart metadata, versions, stars, repository info, signing status, and security summaries into datasets.

## Input

```json
{
  "searchQueries": [
    "nginx",
    "postgresql",
    "redis"
  ],
  "packageUrls": [
    "https://artifacthub.io/packages/helm/bitnami/nginx"
  ],
  "packageKind": "helm",
  "maxItems": 100,
  "enrichDetails": true,
  "includeReadme": false,
  "includeAvailableVersions": false
}
```

## Output

```json
{
  "name": {
    "label": "Name"
  },
  "packageKind": {
    "label": "Kind"
  },
  "repositoryDisplayName": {
    "label": "Repository"
  },
  "organizationDisplayName": {
    "label": "Organization"
  },
  "version": {
    "label": "Version"
  },
  "appVersion": {
    "label": "App version"
  },
  "stars": {
    "label": "Stars"
  },
  "deprecated": {
    "label": "Deprecated"
  },
  "signed": {
    "label": "Signed"
  },
  "securityCritical": {
    "label": "Critical CVEs"
  },
  "securityHigh": {
    "label": "High CVEs"
  },
  "securityMedium": {
    "label": "Medium CVEs"
  },
  "productionOrganizationsCount": {
    "label": "Production orgs"
  },
  "packageUrl": {
    "label": "Package URL"
  },
  "description": {
    "label": "Description"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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