# New business license data API (JSON)

**Use case:** 

Get newly-issued business licenses as structured JSON via Apify API: name, type, address, lat/lng, area, start date.

## Input

```json
{
  "cities": [
    "chicago",
    "seattle",
    "sf"
  ],
  "lookbackDays": 90,
  "futureDays": 180,
  "maxRecords": 25,
  "monitorMode": false,
  "alertOnNewBusiness": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "diagnose": false
}
```

## Output

```json
{
  "start_date": {
    "label": "Date",
    "format": "string"
  },
  "source": {
    "label": "City",
    "format": "string"
  },
  "business_name": {
    "label": "Business",
    "format": "string"
  },
  "license_type": {
    "label": "Type",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "area": {
    "label": "Area",
    "format": "string"
  },
  "source_url": {
    "label": "Source",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [City Business License Monitor — New-Opening Leads](https://apify.com/scrapersdelight/city-business-license-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/city-business-license-monitor) to learn more, explore other use cases, and run it yourself.