# Songkick Scraper — Concert & Tour Date Data (`aitorsm/songkick-events`) Actor

Scrape live concerts and gigs from Songkick by city: event name, date, venue with full address and coordinates, performing artists/lineup, ticket offers and links, organizer, and status. Structured JSON/CSV for tour managers, ticketing, music marketing, and event apps.

- **URL**: https://apify.com/aitorsm/songkick-events.md
- **Developed by:** [Aitor Sanchez-Mansilla](https://apify.com/aitorsm) (community)
- **Categories:** Automation, Developer tools, Travel
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $10.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Songkick Events Scraper — Concert, Artist & Venue Listing Intelligence

[![Songkick Events Scraper status](https://apify.com/actor-badge?actor=aitorsm/songkick-events)](https://apify.com/aitorsm/songkick-events)

The **Songkick Events Scraper** is a source of structured **concert data** for live music events and tour dates from [Songkick](https://www.songkick.com) — the global directory for live music, tours, and venue calendars. You give it a city (or a Songkick metro-area ID) and it returns a clean, structured row for every upcoming concert in that metro, including:

- Concert title, date/time, status, event page URL, and poster image
- **Performer lineup** — each act on the bill with its music genres and Songkick artist URL
- Full venue record — name, Songkick venue URL, street address, city, region, country, postal code, and latitude/longitude
- **Ticket offers** — provider link, availability, on-sale date, price, and currency
- Headliner name and a short event description

This is a **listings dataset**: every row is a concert. Songkick is artist/venue-centric, so the rows describe *what is playing where and when* — not promoter contact records. There is no organizer/promoter lead entity and no social-handle data on Songkick, so this Actor does not offer (and does not bill for) any contact-enrichment step. What you see is the full concert listing.

### Use Cases

#### 1. **Venue & Concert Calendar Intelligence**
Pull every upcoming concert in a metro to map which venues are active, how densely they are booked, and what genres dominate the calendar. Useful for venue-discovery tools, hospitality/tourism apps, and local "what's on" products.

#### 2. **Artist / Tour Tracking**
Each row's `performers[]` array lists every act on the bill with its genres and Songkick artist URL. Track which artists are touring a city, build tour-routing datasets, or feed talent-agency and music-data products.

#### 3. **Ticketing & Pricing Signals**
The `ticketOffers[]` array carries provider links, availability, on-sale date, price, and currency — useful for price-tracking, on-sale alerting, and resale/secondary-market monitoring.

#### 4. **Genre & Scene Mapping**
Performer genres plus venue geo coordinates let you map a city's live-music scene by style and neighborhood — input for editorial curation, recommendation engines, and music-tourism research.

#### 5. **Cross-Platform Event Database**
Combine Songkick concert listings with Eventbrite, Resident Advisor, DICE, and Bandsintown datasets for a unified multi-source live-music view. Shared fields (event name, venue, date, geo) make deduplication straightforward.

> **On the roadmap**: venue-specific listing mode and artist-specific tour mode. [Drop me a line](mailto:business@aitorsm.com) if either would unblock a use case — it helps me prioritize.

### Cost

This Actor uses simple **pay-per-event** pricing:

- **$0.03 per event scraped**

There is no enrichment add-on (Songkick exposes no promoter/contact entity to enrich), so the price is just the per-event rate. Apify's platform costs are included, so the total is predictable: a 250-concert metro sweep costs roughly **$7.50**.

### Input

- **`city`** — name of a city to pull concerts for (e.g. `"Los Angeles"`, `"London"`, `"New York"`, `"Berlin"`, `"Tokyo"`, `"Barcelona"`). The Actor resolves the name to a Songkick metro-area ID; ~25 major metros are recognized for instant lookup. For an unlisted metro, provide `metroAreaId` instead.
- **`metroAreaId`** *(advanced)* — Songkick's numeric metro-area ID. Find it on songkick.com → open a city page → the number in the URL before the country code (e.g. `17835` in `17835-us-los-angeles`). Overrides `city` when set.
- **`maxItems`** — maximum number of concerts to return. `0` = uncapped (paginates the entire metro calendar).
- **`startPage`** — listing page to begin from (`1` = first/soonest). Usually leave at `1`.

#### Sample inputs

**Quick city preview**:
```json
{ "city": "Los Angeles", "maxItems": 20 }
````

**Full metro sweep**:

```json
{ "city": "London", "maxItems": 0 }
```

**Direct metro-area access** (skips name resolution):

```json
{ "metroAreaId": 7644, "maxItems": 100 }
```

### Output

The data is returned in **JSON format**, ideal for direct ingestion into analytics platforms, CRMs, dashboards, or downstream pipelines. Every row is one concert.

#### Example entry

Input: `{ "city": "Los Angeles", "maxItems": 1 }`

```json
{
  "eventId": "42826361",
  "title": "Yungblud at Greek Theatre",
  "url": "https://www.songkick.com/concerts/42826361-yungblud-at-greek-theatre",
  "image": "https://images.sk-static.com/images/media/profile_images/artists/...",
  "eventDescription": "Yungblud live at Greek Theatre, Los Angeles.",
  "startDate": "2026-07-18T19:30:00-0700",
  "endDate": null,
  "eventStatus": "https://schema.org/EventScheduled",
  "eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
  "venueName": "Greek Theatre",
  "venueSameAs": "https://www.songkick.com/venues/1730-greek-theatre",
  "addressLocality": "Los Angeles",
  "addressRegion": "CA",
  "addressCountry": "US",
  "streetAddress": "2700 N Vermont Ave",
  "postalCode": "90027",
  "latitude": 34.1197,
  "longitude": -118.2922,
  "performers": [
    {
      "name": "Yungblud",
      "genres": ["alternative rock", "pop punk"],
      "songkickUrl": "https://www.songkick.com/artists/8455674-yungblud"
    }
  ],
  "organizerName": "Yungblud",
  "ticketOffers": [
    {
      "url": "https://www.songkick.com/tickets/...",
      "availability": "https://schema.org/InStock",
      "validFrom": "2026-03-01T10:00:00-0800",
      "price": "55.00",
      "priceCurrency": "USD"
    }
  ],
  "scrapedFromMetroAreaId": 17835,
  "scrapedFromPage": 1,
  "scrapedAt": "2026-06-18T09:12:40.184Z"
}
```

#### Fields

| Field | Purpose |
|---|---|
| `eventId`, `url`, `title` | Concert identifier, canonical event page URL, and title |
| `image`, `eventDescription` | Event poster image and short description |
| `startDate`, `endDate`, `eventStatus`, `eventAttendanceMode` | Date/time, schedule status, and on-/offline attendance mode |
| `venueName`, `venueSameAs` | Venue name and Songkick venue URL |
| `streetAddress`, `addressLocality`, `addressRegion`, `addressCountry`, `postalCode` | Full venue address |
| `latitude`, `longitude` | Venue geo coordinates |
| **`performers[]`** | Lineup acts — each with `name`, `genres[]`, and `songkickUrl` |
| `organizerName` | Headliner artist name (Songkick's "organizer" is the headliner, **not** a promoter/contact) |
| **`ticketOffers[]`** | Ticket offers — each with `url`, `availability`, `validFrom`, `price`, `priceCurrency` |
| `scrapedFromMetroAreaId`, `scrapedFromPage`, `scrapedAt` | Source metro/page + capture timestamp (audit metadata) |

#### Simplified Overview

A simplified view of this data is shown directly in the **Apify console**:

```json
{
  "title": "Yungblud at Greek Theatre",
  "venueName": "Greek Theatre",
  "performers": [{ "name": "Yungblud", "genres": ["alternative rock"] }],
  "startDate": "2026-07-18T19:30:00-0700",
  "url": "https://www.songkick.com/concerts/42826361-yungblud-at-greek-theatre"
}
```

***

### How to Use

1. **Pick a city** — type a major city (LA, London, New York, Berlin, Tokyo, ~25 in fast lookup), or pass a `metroAreaId` directly.
2. **Set `maxItems`** — a small number for a quick test, `0` for the metro's full forward calendar.
3. **Run the Actor** — check the Overview tab to see concerts as they arrive.
4. **Export the dataset** — JSON, CSV, Excel, or HTML.

***

Start pulling Songkick concert listings today by running this Actor on Apify.

### FAQ

**What does this Actor return?**
Structured concert data for a city: every upcoming live-music event with its date, venue, full lineup (each act + genres), ticket offers, and geo coordinates. One row per concert.

**Does it give me promoter or organizer contacts?**
No. Songkick is artist/venue-centric — the "organizer" is the headliner, not a bookable promoter, and there are no contact records on the platform. For organizer/venue contacts, pair this with the [Email Extractor](https://apify.com/aitorsm/email-extractor) on venue websites, or use a contact-bearing source like [Eventbrite](https://apify.com/aitorsm/eventbrite).

**Can I build a multi-source live-music dataset?**
Yes. Concert data here shares event/venue/date/geo fields with the music siblings below, so deduplicating across platforms is straightforward.

**Is there a Songkick API — why use this instead?**
Songkick's API is gated behind a key and approval, rate-limited, and omits many of the fields you actually want (full lineups, ticket offers, geo). This Actor returns the complete structured record for every concert — date, venue, lineup with genres, ticket offers, and coordinates — with no API key and no quota: point it at a city and export to JSON, CSV, or Excel.

### Related Actors

Build a cross-platform live-music and event-data pipeline by combining Songkick with these:

- [Resident Advisor](https://apify.com/aitorsm/ra-events) — electronic music events, club nights, and festival listings.
- [DICE](https://apify.com/aitorsm/dice-events) — concert and venue data with ticketing signals.
- [Bandsintown](https://apify.com/aitorsm/bandsintown-events) — city-wide concert discovery with artist tour data + RSVP demand signals.
- [Eventbrite](https://apify.com/aitorsm/eventbrite) — broad event data and organizer listings across every category.
- [Luma Events](https://apify.com/aitorsm/luma-events) — tech, startup, and community event data.
- [Email Extractor](https://apify.com/aitorsm/email-extractor) — turn venue or organizer websites into emails and phone numbers.

### Contact

- **Email**: <business@aitorsm.com> — for custom features, advanced filtering, tailored data products, or anything off-spec.
- **Apify Discord**: find me as `aitor.sm`.

If this actor has been useful to you, please consider adding it to your bookmarks 📑 on Apify.

# Actor input Schema

## `city` (type: `string`):

City to pull concerts for (e.g. "Los Angeles", "London"). Resolves to a Songkick metro-area ID. For unlisted metros, provide `metroAreaId` directly.

## `metroAreaId` (type: `integer`):

Songkick numeric metro-area ID. Find it at songkick.com → city page → URL (number before the country code, e.g. 17835-us-los-angeles). Overrides `city` when set.

## `maxItems` (type: `integer`):

Maximum number of events to return. 0 = uncapped (paginates all available).

## `startPage` (type: `integer`):

Listing page to begin pagination from (1 = first/newest). Usually leave at 1.

## Actor input object example

```json
{
  "city": "Los Angeles",
  "maxItems": 100,
  "startPage": 1
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "city": "Los Angeles",
    "maxItems": 100
};

// Run the Actor and wait for it to finish
const run = await client.actor("aitorsm/songkick-events").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "city": "Los Angeles",
    "maxItems": 100,
}

# Run the Actor and wait for it to finish
run = client.actor("aitorsm/songkick-events").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "city": "Los Angeles",
  "maxItems": 100
}' |
apify call aitorsm/songkick-events --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=aitorsm/songkick-events",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Songkick Scraper — Concert & Tour Date Data",
        "description": "Scrape live concerts and gigs from Songkick by city: event name, date, venue with full address and coordinates, performing artists/lineup, ticket offers and links, organizer, and status. Structured JSON/CSV for tour managers, ticketing, music marketing, and event apps.",
        "version": "0.1",
        "x-build-id": "Ur7Xs4gXmy9ctnKc1"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/aitorsm~songkick-events/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-aitorsm-songkick-events",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/aitorsm~songkick-events/runs": {
            "post": {
                "operationId": "runs-sync-aitorsm-songkick-events",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/aitorsm~songkick-events/run-sync": {
            "post": {
                "operationId": "run-sync-aitorsm-songkick-events",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "city": {
                        "title": "City",
                        "type": "string",
                        "description": "City to pull concerts for (e.g. \"Los Angeles\", \"London\"). Resolves to a Songkick metro-area ID. For unlisted metros, provide `metroAreaId` directly."
                    },
                    "metroAreaId": {
                        "title": "Metro area ID (advanced)",
                        "type": "integer",
                        "description": "Songkick numeric metro-area ID. Find it at songkick.com → city page → URL (number before the country code, e.g. 17835-us-los-angeles). Overrides `city` when set."
                    },
                    "maxItems": {
                        "title": "Max events",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of events to return. 0 = uncapped (paginates all available).",
                        "default": 100
                    },
                    "startPage": {
                        "title": "Start page",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Listing page to begin pagination from (1 = first/newest). Usually leave at 1.",
                        "default": 1
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
