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 |
|---|---|---|
| Agnetha Fältskog | 128k | — |
| Benny Andersson | 116k | — |
| Boney M. | 2.1M | +2.95% |
| Frida | 159k | — |
| Army of Lovers | 498k | +4.17% |
| Amanda Lear | 149k | +0.68% |
| Elton John & Kiki Dee | 97k | +0.63% |
| Bee Gees | 3.6M | +2.56% |
| Olivia Newton-John | 1.4M | +3.60% |
| Donna Summer | 1.7M | +2.34% |
| Gloria Gaynor | 1.6M | +4.29% |
| Baccara | 469k | +3.26% |
| Irene Cara | 900k | +2.16% |
| Village People | 1.2M | +3.70% |
| Secret Service | 167k | +0.97% |
| Fleetwood Mac | 5.0M | +2.51% |
| Carpenters | 1.8M | +2.13% |
| The Pointer Sisters | 1.2M | +1.56% |
| Modern Talking | 1.4M | +2.64% |
| Wham! | 3.3M | +1.06% |
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