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 |
|---|---|---|
| Leo Sayer | 570k | +3.17% |
| The Righteous Brothers | 1.1M | +1.97% |
| The 5th Dimension | 452k | +1.30% |
| Hot Chocolate | 953k | +2.53% |
| Jimmy Cliff | 961k | +0.98% |
| Albert Hammond | 505k | +3.17% |
| The Archies | 624k | +2.08% |
| The Stylistics | 449k | +7.64% |
| The Drifters | 1.1M | +1.04% |
| The Four Tops | 590k | +0.08% |
| Jackie Wilson | 760k | +0.72% |
| Desmond Dekker | 498k | +0.47% |
| Gladys Knight & The Pips | 896k | +1.16% |
| Tony Orlando & Dawn | 119k | +1.27% |
| Herman's Hermits | 542k | +0.67% |
| B.J. Thomas | 526k | +2.03% |
| Ben E. King | 1.9M | +4.04% |
| Tommy James & The Shondells | 819k | +2.30% |
| The Melodians | 213k | +0.97% |
| The Foundations | 1.1M | +2.71% |
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