# Scrape Craigslist Phoenix Motorcycles by Owner

**Use case:** 

Phoenix Craigslist motorcycles from the by-owner board, reachable only by URL — title, priceUsd, description, imageUrls, location and postId.

## Input

```json
{
  "startUrls": [
    "https://phoenix.craigslist.org/search/mca"
  ],
  "region": "newyork",
  "category": "sss",
  "condition": "any",
  "hasImage": false,
  "postedToday": false,
  "sort": "date",
  "includeDetails": true,
  "maxResults": 250
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "priceUsd": {
    "label": "Price",
    "format": "number"
  },
  "categoryLabel": {
    "label": "Category",
    "format": "text"
  },
  "region": {
    "label": "City",
    "format": "text"
  },
  "location": {
    "label": "Neighborhood",
    "format": "text"
  },
  "postedAt": {
    "label": "Posted",
    "format": "date"
  },
  "hasImages": {
    "label": "Has images",
    "format": "boolean"
  },
  "url": {
    "label": "Listing",
    "format": "link"
  }
}
```

## About this Actor

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