# 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 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

## 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

Download the OpenAPI definition: https://api.apify.com/v2/acts/CuHJ7SN96LdHDGAgk/builds/vIonNLQuzfs2aEGVc/openapi.json
