select
snapshot_date, week_number, listeners, playcount,
listener_delta, listener_pct_change, listeners_indexed
from api_artist_timeseries
where artist_id = $1
order by snapshot_date ascselect
ts.snapshot_date, ts.week_number, ts.listeners, ts.listeners_indexed,
cw.artist_count, cw.p25_indexed, cw.median_indexed, cw.p75_indexed
from api_artist_timeseries ts
left join api_cohort_weekly cw
on cw.cohort_type = $2 -- 'genre' or 'size_band'
and cw.cohort_key = $3 -- primary_genre or size_band
and cw.snapshot_date = ts.snapshot_date
where ts.artist_id = $1
order by ts.snapshot_date asc| Artist | Listeners | 13-week growth |
|---|---|---|
| The Orb | 671k | +0.74% |
| 808 State | 483k | +1.62% |
| Underworld | 1.7M | +2.25% |
| Leftfield | 890k | +0.56% |
| The Future Sound of London | 706k | +1.02% |
| Fluke | 556k | +1.08% |
| Paul Hartnoll | 59k | +0.35% |
| Death in Vegas | 870k | +0.94% |
| Plaid | 565k | +0.62% |
| The Shamen | 243k | +1.23% |
| System 7 | 127k | +0.63% |
| The Chemical Brothers | 2.9M | +2.01% |
| The Black Dog | 266k | +1.62% |
| Banco De Gaia | 276k | +0.24% |
| Amorphous Androgynous | 131k | +0.39% |
| LFO | 442k | +1.68% |
| Utah Saints | 241k | +0.74% |
| B12 | 107k | +0.93% |
| Speedy J | 150k | +1.92% |
| µ-Ziq | 418k | +2.17% |
select
similar_artist_id, slug, display_name, size_band,
latest_listeners, total_pct_growth, weeks_tracked, similarity_score, rank
from api_artist_similar
where artist_id = $1
order by rank ascselect *
from api_artist_profile
where artist_id = $1