# Scrape 1881-S Morgan Dollar census data

**Use case:** 

Filter NGC Morgan census to a specific date/mint (1881-S): total graded, grade counts, variety. Structured CSV/JSON.

## Input

```json
{
  "censusUrls": [
    "https://www.ngccoin.com/population-report/united-states/3/dollars/13/morgan-dollars-1878-1921/72/all/"
  ],
  "searchTerm": "morgan dollars",
  "gradingScale": "all",
  "designation": "any",
  "coinFilter": "1881-S",
  "maxRecords": 15,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 3,
  "diagnose": false
}
```

## Output

```json
{
  "description": {
    "label": "Coin",
    "format": "string"
  },
  "year": {
    "label": "Year",
    "format": "integer"
  },
  "denomination": {
    "label": "Denom.",
    "format": "string"
  },
  "variety": {
    "label": "Variety",
    "format": "string"
  },
  "designation": {
    "label": "MS/PF",
    "format": "string"
  },
  "total_graded": {
    "label": "Total graded",
    "format": "integer"
  },
  "series": {
    "label": "Series",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "census_url": {
    "label": "Census page",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [NGC Census Scraper — Coin Populations, Grades & Totals](https://apify.com/scrapersdelight/ngc-census-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/ngc-census-scraper) to learn more, explore other use cases, and run it yourself.