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 |
|---|---|---|
| Princess Chelsea | 682k | +4.18% |
| Weezer, Best Coast | 6.0k | +55.08% |
| John + Jane Q. Public | 540k | +0.04% |
| Black Box Recorder | 821k | +5.23% |
| Melanie Martinez | 2.4M | +3.28% |
| Sunday Cruise | 146k | +15.04% |
| Mitski | 3.4M | +3.18% |
| Susannah Joffe | 538k | +9.02% |
| Sir Chloe | 1.1M | +2.80% |
| Luvcat | 375k | +0.78% |
| HOLYCHILD | 298k | +4.76% |
| beabadoobee | 2.8M | +4.52% |
| Elita | 603k | +2.89% |
| Cults | 2.5M | +2.11% |
| Miniature Tigers | 739k | +1.53% |
| Hot Freaks | 502k | +7.57% |
| Beach Bunny | 1.6M | +3.67% |
| Roar | 1.6M | +3.38% |
| April March | 529k | +2.86% |
| TV Girl | 3.0M | +3.91% |
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