# Airbnb Listing URLs by Radius

**Use case:** 

Discover Airbnb listing URLs within a precise lat/long radius of a point — listing id and URL only. Fast, cheap, structured JSON.

## Input

```json
{
  "searchLocations": [
    "Austin, TX"
  ],
  "startUrls": [],
  "maxResults": 2000,
  "roomTypes": [],
  "centerLat": "30.2672",
  "centerLng": "-97.7431",
  "radiusKm": 5,
  "excludeEmptyFields": false,
  "notificationLimit": 5,
  "notifyOnlyChanges": false
}
```

## Output

```json
{
  "listingId": {
    "label": "Listing id"
  },
  "name": {
    "label": "Name"
  },
  "listingUrl": {
    "label": "Listing url"
  }
}
```

## About this Actor

This example demonstrates how to use [Airbnb URL Scraper — Fast, Cheap Listing URL Discovery](https://apify.com/blackfalcondata/airbnb-url-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/blackfalcondata/airbnb-url-scraper) to learn more, explore other use cases, and run it yourself.