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 |
|---|---|---|
| Wine Lips | 212k | +1.22% |
| Bad Nerves | 206k | +3.33% |
| Stiff Richards | 101k | +3.14% |
| Radkey | 98k | +0.85% |
| THE BOBBY LEES | 48k | +9.79% |
| dead pioneers | 28k | +10.12% |
| Surfbort | 68k | +3.79% |
| Karen Dió | 61k | +14.06% |
| Upchuck | 57k | +4.34% |
| Starcrawler | 110k | +1.75% |
| Amyl and the Sniffers | 429k | +3.60% |
| Nobro | 41k | +2.25% |
| The Chats | 290k | +2.48% |
| Die Spitz | 135k | +20.51% |
| Soft Play | 164k | +2.70% |
| White Reaper | 242k | +1.38% |
| The Murder City Devils | 102k | +1.41% |
| Bass Drum of Death | 258k | +1.42% |
| Spiritual Cramp | 89k | +4.15% |
| Aborted Tortoise | 33k | +3.05% |
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