# New Chicago Restaurant & Food Business Licenses This Week

**Use case:** 

Get City of Chicago food-category business licenses issued in the last 7 days, with legal name, DBA, license type, opening type (new business or new location), address, and community area, from the City's own public license dataset.

## Input

```json
{
  "sinceDays": 7,
  "categoryGroups": [
    "FOOD"
  ],
  "openingTypes": [],
  "includeChangeOfLocation": false,
  "communityAreas": [],
  "zipCodes": [],
  "maxItems": 15
}
```

## Output

```json
{
  "dateIssued": {
    "label": "Issued",
    "format": "string"
  },
  "legalName": {
    "label": "Legal name",
    "format": "string"
  },
  "doingBusinessAs": {
    "label": "Doing business as",
    "format": "string"
  },
  "categoryGroup": {
    "label": "Category",
    "format": "string"
  },
  "openingType": {
    "label": "Opening type",
    "format": "string"
  },
  "licenseDescription": {
    "label": "License",
    "format": "string"
  },
  "businessActivity": {
    "label": "Business activity",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "zip": {
    "label": "ZIP",
    "format": "string"
  },
  "communityAreaName": {
    "label": "Community area",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Chicago New Business License Radar](https://apify.com/lukehunter/chicago-new-business-license-radar.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/lukehunter/chicago-new-business-license-radar.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/lukehunter/chicago-new-business-license-radar.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
