# Bandcamp Scraper - Indie Music & Album Data (`lulzasaur/bandcamp-scraper`) Actor

Scrape Bandcamp music marketplace by genre. Get albums, artists, prices, audio previews, and tracklists. Supports 27 genres, 237 subgenres, 3 sort modes. Optional album detail fetch for full tracklists.

- **URL**: https://apify.com/lulzasaur/bandcamp-scraper.md
- **Developed by:** [lulz bot](https://apify.com/lulzasaur) (community)
- **Categories:** E-commerce
- **Stats:** 1 total users, 0 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.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.

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

## Bandcamp Scraper - Indie Music & Album Data

Scrape Bandcamp, the world's largest independent music platform. Search for albums, tracks, and artists by name or genre. Extract prices, full tracklists, release dates, tags, descriptions, and cover art.

### Features

- **Search by anything** -- artist names, album titles, genres, labels, or keywords
- **4 search types** -- Albums, Tracks, Bands/Artists, or All types
- **Multiple queries** -- Run several searches in a single scrape
- **Full album details** -- Optional deep fetch for tracklists, durations, pricing, descriptions
- **Paginated results** -- Automatically follows search pagination for large result sets
- **Structured data** -- Extracts embedded JSON from `data-tralbum` attributes for maximum accuracy

### Input

| Field | Type | Default | Description |
|-------|------|---------|-------------|
| `searchQueries` | string[] | *required* | Artist names, album titles, or genres to search |
| `maxListings` | integer | `100` | Maximum total results across all queries (1-5000) |
| `searchType` | select | `album` | Search type: `album`, `track`, `band`, or `all` |
| `scrapeDetails` | boolean | `false` | Fetch each album/track page for full tracklist and details |
| `proxyConfiguration` | object | | Optional proxy configuration |

### Output

Each result contains:

```json
{
  "title": "OK Computer",
  "artist": "Radiohead",
  "artistUrl": "https://radiohead.bandcamp.com",
  "albumUrl": "https://radiohead.bandcamp.com/album/ok-computer",
  "genre": "rock",
  "tags": ["rock", "alternative", "electronic"],
  "releaseDate": "16 Jun 1997 00:00:00 GMT",
  "price": 9.99,
  "currency": "USD",
  "format": "digital",
  "trackCount": 12,
  "imageUrl": "https://f4.bcbits.com/img/a1234567890_10.jpg",
  "description": "Album description...",
  "itemType": "album",
  "url": "https://radiohead.bandcamp.com/album/ok-computer",
  "searchQuery": "radiohead",
  "scrapedAt": "2026-04-25T12:00:00.000Z"
}
````

With `scrapeDetails: true`, a `tracks` array is included:

```json
{
  "tracks": [
    {
      "trackNumber": 1,
      "title": "Airbag",
      "duration": 281,
      "durationFormatted": "4:41"
    },
    {
      "trackNumber": 2,
      "title": "Paranoid Android",
      "duration": 383,
      "durationFormatted": "6:23"
    }
  ],
  "trackCount": 12
}
```

### Example Inputs

#### Search for a specific artist's albums

```json
{
  "searchQueries": ["radiohead"],
  "searchType": "album",
  "maxListings": 20
}
```

#### Search multiple artists with full details

```json
{
  "searchQueries": ["tame impala", "king gizzard", "black midi"],
  "searchType": "album",
  "scrapeDetails": true,
  "maxListings": 50
}
```

#### Search for tracks by genre keyword

```json
{
  "searchQueries": ["shoegaze", "dream pop", "post-punk"],
  "searchType": "track",
  "maxListings": 200
}
```

#### Search for bands/labels

```json
{
  "searchQueries": ["sub pop", "merge records"],
  "searchType": "band",
  "maxListings": 30
}
```

#### Search all content types

```json
{
  "searchQueries": ["ambient electronic"],
  "searchType": "all",
  "scrapeDetails": true,
  "maxListings": 100
}
```

### How It Works

1. Sends search queries to `bandcamp.com/search` with the specified `item_type` filter
2. Parses SSR HTML search results (`.searchresult` elements) for basic album/track/artist data
3. Automatically follows pagination links to get more results
4. If `scrapeDetails` is enabled, visits each album/track page and extracts the embedded `data-tralbum` JSON for full tracklists, precise pricing, release dates, descriptions, and tags
5. Results are pushed to the dataset with PPE charging

### Data Sources

- **Search results**: Server-side rendered HTML with `.searchresult` items
- **Album/track pages**: `data-tralbum` attribute containing complete album data as JSON
- **Fallbacks**: Meta tags (`og:description`, `datePublished`), inline `TralbumData` script, CSS selectors

### Cost

This actor uses pay-per-event pricing at **$0.005 per result**. A typical run of 100 albums costs approximately $0.50. With `scrapeDetails` enabled, runs take longer but cost the same per result.

# Actor input Schema

## `searchQueries` (type: `array`):

Artist names, album titles, or genres to search on Bandcamp. Each query runs a separate search.

## `maxListings` (type: `integer`):

Maximum total number of albums/tracks to scrape across all queries.

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

Type of content to search for on Bandcamp.

## `scrapeDetails` (type: `boolean`):

If true, visits each album/track page to extract full tracklist, durations, pricing, description, and tags. Slower but much more complete data.

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

Optional proxy to use for requests.

## Actor input object example

```json
{
  "searchQueries": [
    "radiohead",
    "tame impala"
  ],
  "maxListings": 100,
  "searchType": "album",
  "scrapeDetails": false
}
```

# 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 = {
    "searchQueries": [
        "radiohead",
        "tame impala"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("lulzasaur/bandcamp-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 = { "searchQueries": [
        "radiohead",
        "tame impala",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("lulzasaur/bandcamp-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 '{
  "searchQueries": [
    "radiohead",
    "tame impala"
  ]
}' |
apify call lulzasaur/bandcamp-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Bandcamp Scraper - Indie Music & Album Data",
        "description": "Scrape Bandcamp music marketplace by genre. Get albums, artists, prices, audio previews, and tracklists. Supports 27 genres, 237 subgenres, 3 sort modes. Optional album detail fetch for full tracklists.",
        "version": "1.0",
        "x-build-id": "teCcWAdJ2a2zVdyjD"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/lulzasaur~bandcamp-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-lulzasaur-bandcamp-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/lulzasaur~bandcamp-scraper/runs": {
            "post": {
                "operationId": "runs-sync-lulzasaur-bandcamp-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/lulzasaur~bandcamp-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-lulzasaur-bandcamp-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",
                "required": [
                    "searchQueries"
                ],
                "properties": {
                    "searchQueries": {
                        "title": "Search Queries",
                        "type": "array",
                        "description": "Artist names, album titles, or genres to search on Bandcamp. Each query runs a separate search.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxListings": {
                        "title": "Max Listings",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Maximum total number of albums/tracks to scrape across all queries.",
                        "default": 100
                    },
                    "searchType": {
                        "title": "Search Type",
                        "enum": [
                            "album",
                            "track",
                            "band",
                            "all"
                        ],
                        "type": "string",
                        "description": "Type of content to search for on Bandcamp.",
                        "default": "album"
                    },
                    "scrapeDetails": {
                        "title": "Scrape Full Details",
                        "type": "boolean",
                        "description": "If true, visits each album/track page to extract full tracklist, durations, pricing, description, and tags. Slower but much more complete data.",
                        "default": false
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Optional proxy to use for requests."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
