# Student.com Housing in Sydney Scraper

**Use case:** 

Scrape Student.com student accommodation in Sydney with listing name, price, room types, facilities, ratings, and property URL. Export to JSON or CSV.

## Input

```json
{
  "startUrl": "https://www.student.com/us/new-york-city",
  "citySlug": "sydney",
  "maxItems": 100
}
```

## Output

```json
{
  "mainImageUrl": {
    "label": "Primary Image",
    "format": "image"
  },
  "listingUrl": {
    "label": "Listing URL",
    "format": "link"
  },
  "propertyName": {
    "label": "Property Name",
    "format": "text"
  },
  "propertyManager": {
    "label": "Manager",
    "format": "text"
  },
  "headline": {
    "label": "Headline",
    "format": "text"
  },
  "monthlyPriceFrom": {
    "label": "Price From",
    "format": "number"
  },
  "priceCurrency": {
    "label": "Currency",
    "format": "text"
  },
  "billingCycle": {
    "label": "Billing Cycle",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "fullAddress": {
    "label": "Address",
    "format": "text"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "availabilityStatus": {
    "label": "Availability",
    "format": "text"
  },
  "bookingJourney": {
    "label": "Booking Journey",
    "format": "text"
  },
  "bedsAvailable": {
    "label": "Beds Available",
    "format": "number"
  },
  "roomTypes": {
    "label": "Room Types",
    "format": "array"
  },
  "offersNoPlaceNoPay": {
    "label": "No Place No Pay",
    "format": "boolean"
  },
  "offersNoVisaNoPay": {
    "label": "No Visa No Pay",
    "format": "boolean"
  },
  "cancellationPolicySummary": {
    "label": "Cancellation Policy",
    "format": "text"
  },
  "billsIncludedSummary": {
    "label": "Bills Included",
    "format": "text"
  },
  "amenities": {
    "label": "Amenities",
    "format": "array"
  },
  "facilityHighlights": {
    "label": "Highlights",
    "format": "array"
  },
  "propertyTags": {
    "label": "Tags",
    "format": "array"
  },
  "quickestCommute": {
    "label": "Quickest Commute",
    "format": "json"
  },
  "alternateCommute": {
    "label": "Alternate Commute",
    "format": "json"
  },
  "galleryImageUrls": {
    "label": "Gallery Images",
    "format": "array"
  },
  "virtualTourLinks": {
    "label": "Virtual Tours",
    "format": "array"
  },
  "roomOptions": {
    "label": "Room Options",
    "format": "json"
  },
  "lastPriceUpdateAt": {
    "label": "Last Price Update",
    "format": "date"
  },
  "lastBookedAt": {
    "label": "Last Booked",
    "format": "date"
  },
  "dataCollectedAt": {
    "label": "Collected At",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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