# Bitnami Docker Namespace Repository Scraper

**Use case:** 

Extract metadata for all Docker repositories in the Bitnami namespace. Obtain image names, pull counts, star counts, and tags.

## Input

```json
{
  "mode": "namespaceRepos",
  "namespace": "bitnami",
  "maxResults": 500,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": []
  }
}
```

## Output

```json
{
  "fullName": {
    "label": "Full Name",
    "format": "string"
  },
  "namespace": {
    "label": "Namespace",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "isOfficial": {
    "label": "Official",
    "format": "string"
  },
  "starCount": {
    "label": "Stars",
    "format": "string"
  },
  "pullCount": {
    "label": "Pulls",
    "format": "string"
  },
  "lastUpdated": {
    "label": "Last Updated",
    "format": "string"
  },
  "repoUrl": {
    "label": "URL",
    "format": "string"
  },
  "tagName": {
    "label": "Tag",
    "format": "string"
  },
  "tagLastUpdated": {
    "label": "Tag Updated",
    "format": "string"
  },
  "architectures": {
    "label": "Architectures",
    "format": "string"
  }
}
```

## About this Actor

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