# Gender Name Demographics (Age, Gender, Nationality)

**Use case:** 

Extract Name Demographics (Age, Gender, Nationality) data filtered by gender. Export structured results ready for analysis, lead generation, or research.

## Input

```json
{
  "maxItems": 10,
  "names": [
    "michael",
    "emma",
    "yuki",
    "rajesh",
    "sofia"
  ],
  "modes": [
    "gender"
  ]
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "age": {
    "label": "Age",
    "format": "number"
  },
  "ageCount": {
    "label": "Age Sample",
    "format": "number"
  },
  "gender": {
    "label": "Gender",
    "format": "text"
  },
  "genderProbability": {
    "label": "Gender Prob.",
    "format": "number"
  },
  "genderCount": {
    "label": "Gender Sample",
    "format": "number"
  },
  "countries": {
    "label": "Top Countries",
    "format": "object"
  },
  "topCountry": {
    "label": "Top Country",
    "format": "text"
  },
  "topCountryProbability": {
    "label": "Top Prob.",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Collected",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Name Demographics Scraper (Age, Gender, Nationality)](https://apify.com/parseforge/agify-name-demographics-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/agify-name-demographics-scraper) to learn more, explore other use cases, and run it yourself.