# Resident Advisor (RA) Scraper (`crawlergang/resident-advisor-scraper`) Actor

Scrape Resident Advisor (ra.co) with upcoming events by city, artist profiles, and venue/club profiles. No auth required.

- **URL**: https://apify.com/crawlergang/resident-advisor-scraper.md
- **Developed by:** [Crawler Gang](https://apify.com/crawlergang) (community)
- **Categories:** Automation, Developer tools, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 11 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
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

## Resident Advisor (RA) Scraper

Scrape event listings, artist profiles, and venue/club profiles from [Resident Advisor](https://ra.co) — the world's leading platform for electronic music events with 800K+ events across 130+ countries.

### What it does

- **Events by city**: Get upcoming events for any city worldwide with full details — artists, genres, tickets, venue
- **Artist profile**: Get an artist's biography, social links, follower count, and recent/upcoming events  
- **Venue profile**: Get a club's full profile, address, description, capacity, and recent events

### Input

| Field | Type | Description | Example |
|---|---|---|---|
| `mode` | Select | What to scrape | `eventsByCity`, `artistProfile`, `venueProfile` |
| `countryCode` | Select | Country (for events by city) | `gb`, `de`, `us`, `nl` |
| `city` | Text | City name slug | `london`, `berlin`, `new-york` |
| `dateFrom` | Text | Fetch events from this date (YYYY-MM-DD) | `2026-06-01` |
| `dateTo` | Text | Fetch events up to this date (YYYY-MM-DD) | `2026-06-30` |
| `artistName` | Text | Artist slug or name | `aphex-twin`, `bicep`, `peggy-gou` |
| `venueSlug` | Text | Venue name to search | `fabric`, `berghain`, `xoyo` |
| `maxItems` | Integer | Max records to return (1–200) | `20` |

#### Mode: `eventsByCity`

```json
{
  "mode": "eventsByCity",
  "countryCode": "gb",
  "city": "london",
  "maxItems": 20
}
````

#### Mode: `artistProfile`

```json
{
  "mode": "artistProfile",
  "artistName": "aphex-twin",
  "maxItems": 10
}
```

#### Mode: `venueProfile`

```json
{
  "mode": "venueProfile",
  "venueSlug": "fabric",
  "maxItems": 20
}
```

### Output

#### Events by city record

```json
{
  "eventId": "2182764",
  "title": "GALA'26",
  "eventUrl": "https://ra.co/events/2182764",
  "date": "2026-05-22",
  "startTime": "14:00",
  "endTime": "22:30",
  "venue": "Peckham Rye Park",
  "venueUrl": "https://ra.co/clubs/143848",
  "city": "London",
  "country": "United Kingdom",
  "artists": ["Objekt", "Or:la", "Pariah"],
  "genres": ["Techno", "House"],
  "isTicketed": true,
  "ticketUrl": "https://tickets.ra.co/events/2182764",
  "flyerUrl": "https://static.ra.co/images/events/flyers/...",
  "recordType": "event",
  "scrapedAt": "2026-05-23T10:00:00+00:00"
}
```

#### Artist profile record

```json
{
  "artistId": "828",
  "name": "Aphex Twin",
  "artistUrl": "https://ra.co/dj/aphextwin",
  "imageUrl": "https://static.ra.co/images/profiles/aphextwin.jpg",
  "biography": "Aphex Twin, aka Richard D. James...",
  "country": "United Kingdom",
  "region": "South + East",
  "discogs": "https://www.discogs.com/artist/Aphex+Twin",
  "followerCount": 108234,
  "upcomingEventsCount": 0,
  "upcomingEvents": [...],
  "recordType": "artist",
  "scrapedAt": "2026-05-23T10:00:00+00:00"
}
```

#### Venue profile record

```json
{
  "venueId": "237",
  "name": "fabric",
  "venueUrl": "https://ra.co/clubs/237",
  "address": "77a Charterhouse St; Clerkenwell; London EC1M 6HJ; United Kingdom",
  "phone": "020 7336 8898",
  "website": "http://www.fabriclondon.com",
  "description": "fabric is one of London's premier venues...",
  "capacity": "1600",
  "city": "London",
  "country": "United Kingdom",
  "followerCount": 38538,
  "recentEvents": [...],
  "recordType": "venue",
  "scrapedAt": "2026-05-23T10:00:00+00:00"
}
```

### Supported Countries

United Kingdom, Germany, United States, Netherlands, France, Australia, Japan, Belgium, Italy, Spain, Portugal, Sweden, Denmark, Norway, Finland, Brazil, Mexico, Canada, South Africa, India, Singapore, Austria, Switzerland, Ireland, Poland, Czech Republic, Hungary, Greece, Romania, Argentina, Colombia, Chile, New Zealand, South Korea, Thailand.

### Frequently Asked Questions

**Does this require login or cookies?**\
No. All data is publicly accessible from Resident Advisor's official API without authentication.

**How do I find my city slug?**\
Go to `https://ra.co/events` and select your city. The URL will show the format: `ra.co/events/gb/london`. Use `london` as the city and `gb` as the country code.

**What artist name format should I use?**\
Use the slug from the RA URL. For `https://ra.co/artists/aphex-twin`, use `aphex-twin`. You can also try the artist's full name.

**Can I filter events by date range?**\
Yes. Use `dateFrom` and `dateTo` fields in `YYYY-MM-DD` format.

**How many events can I get per run?**\
Up to 200 events per run. For larger volumes, consider multiple runs with different date ranges.

**What if a city returns no results?**\
Make sure the city slug matches RA's format (e.g., `new-york` not `newyork`). Some smaller cities may have few or no upcoming events.

**Does this work for all RA regions?**\
Yes. RA covers 130+ countries. This scraper supports 35 of the most active markets via the country code selector.

### Data Source

Data is sourced directly from [Resident Advisor's](https://ra.co) internal GraphQL API which powers their public website. All scraped data is publicly accessible without authentication.

# Actor input Schema

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

What to scrape from Resident Advisor.

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

Country for event search (mode=eventsByCity). Two-letter code.

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

City name for event search (mode=eventsByCity). Examples: london, berlin, new-york, amsterdam, paris.

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

Fetch events from this date onwards. Defaults to today if empty. Format: YYYY-MM-DD.

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

Fetch events up to this date. Leave empty for no upper bound. Format: YYYY-MM-DD.

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

Artist slug or name for artist profile (mode=artistProfile). Example: aphex-twin, bicep, peggy-gou.

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

Venue slug or name for venue profile (mode=venueProfile). Example: fabric, berghain, panorama-bar.

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

Maximum number of records to return.

## Actor input object example

```json
{
  "mode": "eventsByCity",
  "countryCode": "gb",
  "city": "london",
  "maxItems": 20
}
```

# Actor output Schema

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

Dataset containing all scraped Resident Advisor events, artist profiles, or venue profiles.

# 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 = {
    "mode": "eventsByCity",
    "countryCode": "gb",
    "city": "london",
    "maxItems": 20
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlergang/resident-advisor-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 = {
    "mode": "eventsByCity",
    "countryCode": "gb",
    "city": "london",
    "maxItems": 20,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlergang/resident-advisor-scraper").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 '{
  "mode": "eventsByCity",
  "countryCode": "gb",
  "city": "london",
  "maxItems": 20
}' |
apify call crawlergang/resident-advisor-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Resident Advisor (RA) Scraper",
        "description": "Scrape Resident Advisor (ra.co) with upcoming events by city, artist profiles, and venue/club profiles. No auth required.",
        "version": "1.0",
        "x-build-id": "WWm2DXfMHDcgamXWm"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlergang~resident-advisor-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlergang-resident-advisor-scraper",
                "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/crawlergang~resident-advisor-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlergang-resident-advisor-scraper",
                "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/crawlergang~resident-advisor-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlergang-resident-advisor-scraper",
                "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": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "eventsByCity",
                            "artistProfile",
                            "venueProfile"
                        ],
                        "type": "string",
                        "description": "What to scrape from Resident Advisor.",
                        "default": "eventsByCity"
                    },
                    "countryCode": {
                        "title": "Country code",
                        "enum": [
                            "gb",
                            "de",
                            "us",
                            "nl",
                            "fr",
                            "au",
                            "jp",
                            "be",
                            "it",
                            "es",
                            "pt",
                            "se",
                            "dk",
                            "no",
                            "fi",
                            "br",
                            "mx",
                            "ca",
                            "za",
                            "in",
                            "sg",
                            "at",
                            "ch",
                            "ie",
                            "pl",
                            "cz",
                            "hu",
                            "gr",
                            "ro",
                            "ar",
                            "co",
                            "cl",
                            "nz",
                            "kr",
                            "th"
                        ],
                        "type": "string",
                        "description": "Country for event search (mode=eventsByCity). Two-letter code.",
                        "default": "gb"
                    },
                    "city": {
                        "title": "City",
                        "type": "string",
                        "description": "City name for event search (mode=eventsByCity). Examples: london, berlin, new-york, amsterdam, paris."
                    },
                    "dateFrom": {
                        "title": "Date from (YYYY-MM-DD)",
                        "type": "string",
                        "description": "Fetch events from this date onwards. Defaults to today if empty. Format: YYYY-MM-DD."
                    },
                    "dateTo": {
                        "title": "Date to (YYYY-MM-DD)",
                        "type": "string",
                        "description": "Fetch events up to this date. Leave empty for no upper bound. Format: YYYY-MM-DD."
                    },
                    "artistName": {
                        "title": "Artist name / slug",
                        "type": "string",
                        "description": "Artist slug or name for artist profile (mode=artistProfile). Example: aphex-twin, bicep, peggy-gou."
                    },
                    "venueSlug": {
                        "title": "Venue slug or search term",
                        "type": "string",
                        "description": "Venue slug or name for venue profile (mode=venueProfile). Example: fabric, berghain, panorama-bar."
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 200,
                        "type": "integer",
                        "description": "Maximum number of records to return.",
                        "default": 20
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
