# College Board BigFuture California Colleges Scraper

**Use case:** 

Scrape public California colleges from College Board BigFuture: name, city, size, setting, net price, graduation rate, and SAT ranges. JSON or CSV.

## Input

```json
{
  "maxItems": 50,
  "state": "CA",
  "type": "public"
}
```

## Output

```json
{
  "name": {
    "label": "🏫 College",
    "format": "text"
  },
  "city": {
    "label": "🏙️ City",
    "format": "text"
  },
  "state": {
    "label": "📍 State",
    "format": "text"
  },
  "type": {
    "label": "🏛️ Type",
    "format": "text"
  },
  "size": {
    "label": "📐 Size",
    "format": "text"
  },
  "setting": {
    "label": "🌆 Setting",
    "format": "text"
  },
  "averageNetPrice": {
    "label": "💵 Avg Net Price",
    "format": "number"
  },
  "graduationRate": {
    "label": "🎓 Grad Rate %",
    "format": "number"
  },
  "sat25": {
    "label": "📝 SAT 25th",
    "format": "number"
  },
  "sat75": {
    "label": "📝 SAT 75th",
    "format": "number"
  },
  "url": {
    "label": "🌐 BigFuture Page",
    "format": "link"
  },
  "scrapedAt": {
    "label": "🕒 Scraped At",
    "format": "date"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [College Board BigFuture Colleges Scraper](https://apify.com/parseforge/college-board-bigfuture-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/college-board-bigfuture-scraper) to learn more, explore other use cases, and run it yourself.