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 |
|---|---|---|
| saturdays at your place | 133k | +5.00% |
| Kevin Walkman | 170k | +3.98% |
| hey, nothing | 244k | +7.45% |
| Phoneboy | 164k | +4.69% |
| Edgehill | 81k | +15.79% |
| Mustard Service | 296k | +3.55% |
| kurffew | 219k | +2.86% |
| Heart Attack Man | 137k | +2.13% |
| Riley! | 52k | +18.16% |
| Marigold | 271k | +2.50% |
| Movements | 463k | +4.66% |
| Mind’s Eye | 346k | +3.06% |
| Dogpark | 149k | +31.17% |
| Microwave | 261k | +2.84% |
| The Rare Occasions | 1.3M | +6.97% |
| The Backseat Lovers | 1.1M | +3.95% |
| EKKSTACY | 1.0M | +4.33% |
| Born Without Bones | 217k | +5.64% |
| Benches | 241k | +6.51% |
| HUNNY | 483k | +1.78% |
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