# London DICE Events Scraper

**Use case:** 

Extract London DICE events, dates, ticket prices, venues, and event URLs into a clean structured dataset.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://dice.fm/browse/london-54d8a23438fe5d27d500001c?lng=en"
    }
  ],
  "cityUrls": [],
  "categories": [],
  "maxItems": 30
}
```

## Output

```json
{
  "id": {
    "label": "Event ID"
  },
  "title": {
    "label": "Title"
  },
  "url": {
    "label": "Event URL",
    "format": "link"
  },
  "status": {
    "label": "Status"
  },
  "startDate": {
    "label": "Start date",
    "format": "date"
  },
  "categories": {
    "label": "Categories"
  },
  "venueName": {
    "label": "Venue"
  },
  "venueAddress": {
    "label": "Address"
  },
  "city": {
    "label": "City"
  },
  "country": {
    "label": "Country"
  },
  "currency": {
    "label": "Currency"
  },
  "price": {
    "label": "Price"
  },
  "priceFrom": {
    "label": "Price from"
  },
  "maxTickets": {
    "label": "Ticket limit"
  },
  "refundPolicy": {
    "label": "Refund policy"
  },
  "imageUrl": {
    "label": "Image",
    "format": "link"
  },
  "sourceBrowseUrl": {
    "label": "Source",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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