# Search by keyword Docker Hub Container Images

**Use case:** 

Extract Docker Hub Container Images data filtered by Search by keyword. Export structured results ready for analysis, lead generation, or research.

## Input

```json
{
  "maxItems": 10,
  "mode": "search",
  "query": "nginx",
  "names": "library/nginx\nlibrary/postgres\nlibrary/redis\nlibrary/python",
  "fetchTags": true
}
```

## Output

```json
{
  "repoName": {
    "label": "Name",
    "format": "text"
  },
  "repoOwner": {
    "label": "Owner",
    "format": "text"
  },
  "shortDescription": {
    "label": "Description",
    "format": "text"
  },
  "stars": {
    "label": "Stars",
    "format": "number"
  },
  "pullCount": {
    "label": "Pulls",
    "format": "number"
  },
  "isOfficial": {
    "label": "Official",
    "format": "boolean"
  },
  "isAutomated": {
    "label": "Auto",
    "format": "boolean"
  },
  "lastUpdated": {
    "label": "Updated",
    "format": "text"
  },
  "tagCount": {
    "label": "Tags",
    "format": "number"
  },
  "dockerHubUrl": {
    "label": "Docker Hub",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Docker Hub Container Images Scraper](https://apify.com/parseforge/docker-hub-images-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/docker-hub-images-scraper) to learn more, explore other use cases, and run it yourself.