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 |
|---|---|---|
| Stockard Channing | 218k | +2.14% |
| Cindy Bullens | 100k | +1.57% |
| Louis St. Louis | 52k | +1.29% |
| John Travolta | 1.1M | +1.95% |
| John Travolta & Olivia Newton-John | 130k | +0.43% |
| Joel Grey | 126k | +1.66% |
| Original Broadway Cast of Hamilton | 497k | +0.16% |
| Renée Zellweger | 148k | — |
| Andrew Lloyd Webber | 921k | +1.78% |
| Julie Andrews | 556k | +1.96% |
| Kristin Chenoweth & Idina Menzel | 16k | +1.19% |
| Stephen Sondheim | 241k | +2.07% |
| Stephen Schwartz | 463k | +2.03% |
| Phillipa Soo | 629k | +3.73% |
| Alan Menken | 724k | +5.87% |
| Liza Minnelli | 274k | +2.26% |
| The Wicked Orchestra | 161k | +0.81% |
| Colm Wilkinson | 112k | +1.66% |
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