# Dice.fm Event Scraper (`anyxsolutions/dice-fm-scraper`) Actor

Scrapes events, concerts, and shows from Dice.fm by search query or start URLs.

- **URL**: https://apify.com/anyxsolutions/dice-fm-scraper.md
- **Developed by:** [Anyx Solutions](https://apify.com/anyxsolutions) (community)
- **Categories:** Automation, Developer tools, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.49 / 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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — 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

![banner](https://i.ibb.co/XrLN0Rs7/Screenshot-2026-06-20-at-2-13-42-PM.png)

## Dice.fm Event Scraper

**Collect events, concerts, and shows from Dice.fm at scale — by search or direct URL.**

The Dice.fm Event Scraper extracts structured event data from [Dice.fm](https://dice.fm): names,
prices, dates, venues, locations, and images. It's built for promoters, music-industry researchers,
event aggregators, and anyone monitoring live events worldwide.

### ⚡ Quick start

```json
{
  "query": "New York",
  "type": "city",
  "maxItems": 5
}
```

Or start from specific Dice.fm URLs:

```json
{
  "startUrls": [{ "url": "https://dice.fm/browse/washingtondc-5e3c290f136e51081e406ed6" }],
  "maxItems": 5
}
```

### 🧩 Input

| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| `startUrls` | array | one of `startUrls`/`query` | — | Dice.fm URLs: event, venue, artist, promoter, or browse (city / category / genre) pages. |
| `query` | string | one of `startUrls`/`query` | — | Search term — usually a city, artist, venue, promoter, or event name. |
| `type` | string | no | `city` | Search type: `city`, `event`, `artist`, `venue`, `promoter`. |
| `eventCategory` | string | no | — | Category for city browse pages: `gig`, `dj`, `party`, `playback`, `artistsigning`, `sport`, `comedy`, `theatre`, `social`, `talks`, `film`, `art`, `foodanddrink`. |
| `genre` | string | no | — | Free-form genre slug under the selected `eventCategory` (e.g. `house`, `techno`). Requires `eventCategory`. |
| `priceFrom` | string | no | — | Minimum ticket price. One of `5`–`45` in steps of 5. |
| `priceTo` | string | no | — | Maximum ticket price. One of `5`–`45` in steps of 5. |
| `dateFrom` | string | no | — | Start date, `YYYY-MM-DD`. |
| `dateUntil` | string | no | — | End date, `YYYY-MM-DD`. |
| `maxItems` | integer | no | `5` | Maximum results per start URL. |
| `proxyConfiguration` | object | yes | `{"useApifyProxy":true,"apifyProxyGroups":[]}` | Apify proxy settings. |

### 📤 Output

Each scraped event is pushed to the dataset as one record.

#### Fields

| Field | Type | Description |
|---|---|---|
| `url` | string | Public Dice.fm event URL. |
| `name` | string | Event name. |
| `priceFrom` | number | null | Lowest available price (minor units). |
| `price` | number | null | Ticket price (minor units). |
| `currency` | string | null | Currency code. |
| `description` | string | null | Event description. |
| `date_unix` | number | Event start time (Unix seconds). |
| `datetime` | string | null | Human-readable localized date/time. |
| `tags` | string | Comma-separated event tags. |
| `previewTitle` | string | null | Title of the event's preview clip, when Dice.fm has one. |
| `previewUrl` | string | null | Link the preview clip points at. |
| `location` | string | Venue address. |
| `city` / `country` / `countryCode` | string | Venue location. |
| `place` | string | Venue timezone/place. |
| `doorsOpenDate` / `doorsOpenText` / `doorsCloseDate` | string | null | Door times. |
| `image` | string | null | Event image URL. |

<details><summary>Example output</summary>

```json
{
  "url": "https://dice.fm/event/92qbo9-eri-con-me-...-tickets",
  "name": "Eri con me - Alice canta Battiato con I SOLISTI AQUILANI",
  "priceFrom": null,
  "price": 3450,
  "currency": "EUR",
  "description": "**Ostia Antica Festival** Info: biglietteria@bassculture.it",
  "date_unix": 1752433200,
  "datetime": "Sun 13 Jul, 9:00 pm CEST",
  "tags": "gig",
  "location": "Via dei Romagnoli, 717 - 00119 - Ostia (RM)",
  "city": "Roma",
  "country": "Italia",
  "countryCode": "IT",
  "place": "Europe/Rome",
  "doorsOpenDate": "2025-07-13T21:00:00+02:00",
  "doorsOpenText": "Doors open 9:00 pm CEST",
  "doorsCloseDate": null,
  "image": "https://dice-media.imgix.net/attachments/2025-04-02/33363272-...jpg"
}
```

</details>

### 💡 Use cases

- **Promoters** monitor event trends and popular venues.
- **Researchers** analyze event volumes, ticket prices, and locations.
- **Aggregators** keep an events directory fresh across cities.
- **Media & bloggers** gather event data for content.

### ❓ FAQ

- **What is Dice.fm?** A global ticketing and event-discovery platform for concerts, festivals, and live events.
- **What can be scraped?** Any public Dice.fm event, plus venue, artist, promoter, and browse pages.
- **What if Dice.fm changes its site?** We maintain the scraper and update it when major changes affect functionality.

### 🔗 More scrapers by Anyx

- [Lu.ma Scraper](https://apify.com/anyxsolutions/lu-ma-scraper)
- [TikTok Trending Hashtags Scraper](https://apify.com/anyxsolutions/tiktok-trending-hashtags-scraper)

### 🤝 Anyx Solutions

We build custom scrapers and data-extraction pipelines.

- Email: tantosthor@gmail.com

### 🖼 Image credit

Image credit: [dice.fm](https://www.dice.fm/)

# Actor input Schema

## `startUrls` (type: `array`):

Dice.fm URLs to scrape. Supports event, venue, artist, promoter, and browse (city / category / genre) pages.

## `query` (type: `string`):

Search term to look up on Dice.fm — a city, artist, venue, promoter, or event name, for example "Berlin". Used when no start URLs are provided.

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

What the search query refers to: a city, an artist, a venue, a promoter, or an event name.

## `eventCategory` (type: `string`):

Filter city browse pages by category (for example: DJ, gig, party).

## `genre` (type: `string`):

Genre to narrow the selected event category. Enter any Dice.fm genre slug, for example: acid, techno, house. Requires an event category.

## `priceFrom` (type: `string`):

Only include events with a ticket price at or above this amount.

## `priceTo` (type: `string`):

Only include events with a ticket price at or below this amount.

## `dateFrom` (type: `string`):

Only include events on or after this date, for example 2026-09-01 (format: YYYY-MM-DD).

## `dateUntil` (type: `string`):

Only include events on or before this date, for example 2026-12-31 (format: YYYY-MM-DD).

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

Maximum number of events to extract per start URL or query.

## `proxyConfiguration` (type: `object`):

Apify proxy settings used for the run, for example { "useApifyProxy": true, "apifyProxyGroups": \["RESIDENTIAL"] }.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://dice.fm/browse/washingtondc-5e3c290f136e51081e406ed6"
    }
  ],
  "type": "city",
  "maxItems": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": []
  }
}
```

# 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 = {
    "startUrls": [
        {
            "url": "https://dice.fm/browse/washingtondc-5e3c290f136e51081e406ed6"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("anyxsolutions/dice-fm-scraper").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 = { "startUrls": [{ "url": "https://dice.fm/browse/washingtondc-5e3c290f136e51081e406ed6" }] }

# Run the Actor and wait for it to finish
run = client.actor("anyxsolutions/dice-fm-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "startUrls": [
    {
      "url": "https://dice.fm/browse/washingtondc-5e3c290f136e51081e406ed6"
    }
  ]
}' |
apify call anyxsolutions/dice-fm-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,anyxsolutions/dice-fm-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/C7xmFORG9MdwZ2Rvz/builds/fYXXmaflo6eAwpbVs/openapi.json
