# Dice Fm (`hypebridge/dice-fm`) Actor

Scrapes event data from Dice.fm- concerts, festivals, DJ events, and live shows.

- **URL**: https://apify.com/hypebridge/dice-fm.md
- **Developed by:** [Hypebridge](https://apify.com/hypebridge) (community)
- **Categories:** Automation, E-commerce, Integrations
- **Stats:** 20 total users, 2 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: 3.00 out of 5 stars

## Pricing

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

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

## Dice.fm Event Scraper

Scrapes event data from [Dice.fm](https://dice.fm) - concerts, festivals, DJ events, and live shows.

### Features

- **Event Detail Scraping**: Get comprehensive event details including full description, lineup, organizer details, and ticket info
- **Multiple URL Types**: Supports event details pages, browse pages, event details pages, promoter profiles, venue profiles, and artist profiles
- **Flexible Browse URLs**: Works with city-ID format (`/browse/new_york-{id}`) and lat/lng format (`/browse/Austin:32.7767:-96.7970`)
- **Pay-Per-Event Pricing**: Optional detailed scraping with pay-per-event charging

### Supported URL Types

| Type             | URL Pattern                  | Example                                            |
| ---------------- | ---------------------------- | -------------------------------------------------- |
| Event            | `/event/{perm_name}`         | `dice.fm/event/dk6r9e-event-name-tickets`          |
| Browse (city-id) | `/browse/{city}-{id}`        | `dice.fm/browse/new_york-5bbf4db0f06331478e9b2c59` |
| Browse (lat/lng) | `/browse/{City}:{lat}:{lng}` | `dice.fm/browse/Austin:32.7767:-96.7970`           |
| Promoter         | `/promoters/{slug}`          | `dice.fm/promoters/gray-area-lxbp`                 |
| Venue            | `/venue/{slug}`              | `dice.fm/venue/coba-bblro`                         |
| Artist           | `/artist/{slug}`             | `dice.fm/artist/crossbow-w8kkg`                    |

### Input

| Parameter            | Type    | Default    | Description                                         |
| -------------------- | ------- | ---------- | --------------------------------------------------- |
| `startUrls`          | array   | (required) | Dice.fm URLs to scrape - any supported URL type     |
| `maxEvents`          | number  | 100        | Maximum events to scrape (0 = unlimited)            |
| `scrapeEventDetails` | boolean | true       | Fetch full event details (additional charges apply) |

#### Example Input

```json
{
  "startUrls": [
    { "url": "https://dice.fm/browse/new_york-5bbf4db0f06331478e9b2c59" },
    { "url": "https://dice.fm/browse/Austin:32.7767:-96.7970" },
    { "url": "https://dice.fm/promoters/gray-area-lxbp" },
    { "url": "https://dice.fm/venue/coba-bblro" },
    { "url": "https://dice.fm/artist/crossbow-w8kkg" }
  ],
  "maxEvents": 50,
  "scrapeEventDetails": true
}
````

### Output

Each event includes:

- **Basic Info**: eventId, eventTitle, eventUrl, description, coverUrl
- **Date/Time**: startDateTime, endDateTime, timezone
- **Location**: venueName, venueAddress, city, coordinates
- **Pricing**: lowestPrice, currency, status
- **Organizer**: organizerId, organizerName, organizerLogo
- **Tags**: Event type tags

When `scrapeEventDetails` is enabled, additional fields include:

- **Full Description**: fullDescription, ageLimit
- **Lineup**: performers array, detailed lineup with images
- **Venue Details**: highlights, accessibility info
- **Media**: song preview info
- **Social Links**: sharing links
- **Additional Organizers**: marketeers/promoters
- **Dates**: doorsOpenDate, saleStartDate, saleEndDate

#### Sample Output

**Event (Basic Mode)** - `scrapeEventDetails: false`

```json
{
  "eventId": "680674e47021480001ef4206",
  "eventUrl": "https://dice.fm/event/v3rgqv-midwest-dreams-music-festival...",
  "eventTitle": "Midwest Dreams Music Festival",
  "description": "Midwest Dreams 2025 - Bigger, Better & Built for You!!!...",
  "coverUrl": "https://dice-media.imgix.net/attachments/...",
  "startDateTime": "2026-06-05T18:00:00-05:00",
  "endDateTime": "2026-06-06T01:00:00-05:00",
  "timezone": "America/Chicago",
  "venueName": "World Wide Technology Raceway",
  "venueAddress": "700 Raceway Boulevard, Madison, Illinois 62201",
  "city": "Madison",
  "coordinates": { "latitude": 38.654189, "longitude": -90.138022 },
  "lowestPrice": 3599,
  "currency": "USD",
  "status": "on-sale",
  "organizerName": "RUNWAY'S LANDING",
  "tags": ["dj"],
  "source": "dice_fm",
  "scrapedAt": "2026-01-18T19:44:53.111Z"
}
```

**Event (Detailed Mode)** - `scrapeEventDetails: true`

```json
{
  "eventId": "680674e47021480001ef4206",
  "eventUrl": "https://dice.fm/event/v3rgqv-midwest-dreams-music-festival...",
  "eventTitle": "Midwest Dreams Music Festival",
  "description": "Midwest Dreams 2025 - Bigger, Better & Built for You!!!...",
  "fullDescription": "## Midwest Dreams 2025\n\nBigger, Better & Built for You! Join us for the ultimate music festival experience...",
  "ageLimit": "18+",
  "coverUrl": "https://dice-media.imgix.net/attachments/...",
  "startDateTime": "2026-06-05T18:00:00-05:00",
  "endDateTime": "2026-06-06T01:00:00-05:00",
  "timezone": "America/Chicago",
  "doorsOpenDate": "2026-06-05T16:00:00-05:00",
  "saleStartDate": "2025-12-01T10:00:00-06:00",
  "saleEndDate": "2026-06-05T18:00:00-05:00",
  "isMultiDayEvent": false,
  "venue": {
    "id": "5f8b2c3d4e5f6a7b8c9d0e1f",
    "name": "World Wide Technology Raceway",
    "address": "700 Raceway Boulevard, Madison, Illinois 62201",
    "city": "Madison",
    "coordinates": { "latitude": 38.654189, "longitude": -90.138022 },
    "highlights": ["Parking Available", "Food & Drinks", "VIP Areas"],
    "accessibility": "Wheelchair accessible"
  },
  "performers": ["Artist One", "Artist Two", "Artist Three"],
  "lineup": [
    {
      "id": "abc123",
      "name": "Artist One",
      "image": "https://dice-media.imgix.net/..."
    },
    {
      "id": "def456",
      "name": "Artist Two",
      "image": "https://dice-media.imgix.net/..."
    }
  ],
  "lowestPrice": 3599,
  "currency": "USD",
  "status": "on-sale",
  "eventType": "festival",
  "organizerId": "5a1b2c3d4e5f6a7b8c9d0e1f",
  "organizerName": "RUNWAY'S LANDING",
  "organizerLogo": "https://dice-media.imgix.net/...",
  "additionalOrganizers": [
    {
      "id": "xyz789",
      "name": "Co-Promoter",
      "logo": "https://dice-media.imgix.net/..."
    }
  ],
  "song": {
    "type": "spotify",
    "title": "Festival Anthem",
    "previewUrl": "https://p.scdn.co/mp3-preview/..."
  },
  "socialLinks": {
    "instagram": "https://instagram.com/midwestdreams",
    "twitter": "https://twitter.com/midwestdreams"
  },
  "tags": ["dj", "festival"],
  "source": "dice_fm",
  "scrapedAt": "2026-01-18T19:44:53.111Z"
}
```

# Actor input Schema

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

Dice.fm URLs to scrape. Supports browse pages (dice.fm/browse/city-id) or direct event URLs (dice.fm/event/event-name).

## `maxEvents` (type: `integer`):

Maximum number of events to scrape. Set to 0 for unlimited.

## `scrapeEventDetails` (type: `boolean`):

When enabled, fetches complete event information including full description, lineup, organizer details, and ticket info. Additional charges apply per event detail scraped.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://dice.fm/browse/st_louis-67940e2c16ef2ae54597d632"
    }
  ],
  "maxEvents": 100,
  "scrapeEventDetails": true
}
```

# Actor output Schema

## `overviewView` (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/st_louis-67940e2c16ef2ae54597d632"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("hypebridge/dice-fm").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/st_louis-67940e2c16ef2ae54597d632" }] }

# Run the Actor and wait for it to finish
run = client.actor("hypebridge/dice-fm").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 '{
  "startUrls": [
    {
      "url": "https://dice.fm/browse/st_louis-67940e2c16ef2ae54597d632"
    }
  ]
}' |
apify call hypebridge/dice-fm --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Dice Fm",
        "description": "Scrapes event data from Dice.fm- concerts, festivals, DJ events, and live shows.",
        "version": "0.0",
        "x-build-id": "qFiTSAzQ9Cl0CvUxg"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/hypebridge~dice-fm/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-hypebridge-dice-fm",
                "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/hypebridge~dice-fm/runs": {
            "post": {
                "operationId": "runs-sync-hypebridge-dice-fm",
                "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/hypebridge~dice-fm/run-sync": {
            "post": {
                "operationId": "run-sync-hypebridge-dice-fm",
                "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",
                "required": [
                    "startUrls"
                ],
                "properties": {
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Dice.fm URLs to scrape. Supports browse pages (dice.fm/browse/city-id) or direct event URLs (dice.fm/event/event-name).",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "maxEvents": {
                        "title": "Maximum Events",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of events to scrape. Set to 0 for unlimited.",
                        "default": 100
                    },
                    "scrapeEventDetails": {
                        "title": "Scrape Full Event Details",
                        "type": "boolean",
                        "description": "When enabled, fetches complete event information including full description, lineup, organizer details, and ticket info. Additional charges apply per event detail scraped.",
                        "default": true
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
