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 |
|---|---|---|
| Giorgio Moroder | 587k | +1.82% |
| F.R. David | 445k | +3.47% |
| The Pointer Sisters | 1.2M | +1.56% |
| Donna Summer | 1.7M | +2.34% |
| Bad Boys Blue | 254k | +1.85% |
| Lipps, Inc. | 202k | +0.38% |
| KC and The Sunshine Band | 382k | +0.29% |
| Dan Hartman | 321k | +1.72% |
| Evelyn "Champagne" King | 406k | +2.71% |
| Modern Talking | 1.4M | +2.64% |
| Cerrone | 359k | +2.79% |
| ABBA | 4.5M | +2.62% |
| Space | 323k | +1.33% |
| Anita Ward | 443k | +6.71% |
| Gloria Gaynor | 1.6M | +4.29% |
| Amanda Lear | 149k | +0.68% |
| Van McCoy | 198k | +2.59% |
| Boys Town Gang | 158k | +4.10% |
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