# Scrape Charizard PSA Cards from Courtyard.io

**Use case:** 

Extract every PSA-graded Charizard card listed on Courtyard.io with prices, grades, fair-value estimates and slab images.

## Input

```json
{
  "query": "Charizard",
  "sortBy": "recentlyListed",
  "graders": [
    "PSA"
  ],
  "gradeMin": 0,
  "yearMin": 0,
  "yearMax": 0,
  "priceMinUsd": 0,
  "priceMaxUsd": 0,
  "listedOnly": true,
  "maxPriceVsValuePct": 0,
  "maxResults": 100,
  "maxPages": 0,
  "compact": false,
  "excludeEmptyFields": false,
  "incrementalMode": false,
  "emitUnchanged": false,
  "emitExpired": false,
  "skipReposts": false,
  "notifyOnlyChanges": true,
  "notificationLimit": 10,
  "includeRunSummary": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "title": {
    "label": "Title"
  },
  "priceUsd": {
    "label": "Price (USD)"
  },
  "estimatedValueUsd": {
    "label": "Est. value (USD)"
  },
  "grader": {
    "label": "Grader"
  },
  "grade": {
    "label": "Grade"
  },
  "category": {
    "label": "Category"
  },
  "year": {
    "label": "Year"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Courtyard.io Scraper | Cheap 1$/1k](https://apify.com/trev0n/courtyard-io-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/trev0n/courtyard-io-scraper) to learn more, explore other use cases, and run it yourself.