# Cheap baseball cards

**Use case:** 

Collect up to 20 active Baseball card listings with a maximum source price of 25 from public MyCardPost pages. The dataset shows card details, prices, sellers, active status, and image URLs when the source provides them.

## Input

```json
{
  "category": "Baseball",
  "maxPrice": 25,
  "listingStatus": "active",
  "maxItems": 20
}
```

## Output

```json
{
  "listingId": {
    "label": "Listing ID",
    "format": "string"
  },
  "detailUrl": {
    "label": "Detail page",
    "format": "string"
  },
  "card": {
    "label": "Card",
    "format": "object"
  },
  "status": {
    "label": "Listing status",
    "format": "string"
  },
  "grading": {
    "label": "Grading",
    "format": "object"
  },
  "price": {
    "label": "Price",
    "format": "object"
  },
  "seller": {
    "label": "Seller",
    "format": "object"
  },
  "description": {
    "label": "Listing description",
    "format": "string"
  },
  "images": {
    "label": "Images",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [MyCardPost Graded Card Marketplace Scraper](https://apify.com/maximedupre/mycardpost.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maximedupre/mycardpost.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/maximedupre/mycardpost.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
