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 |
|---|---|---|
| Gravagerz | 285k | +8.35% |
| Bovski | 98k | +14.78% |
| WHTKD | 62k | +1.06% |
| Bl3ss | 397k | +5.46% |
| Angrybaby | 152k | +8.50% |
| Oskar med K | 301k | +0.30% |
| Navos | 183k | +5.03% |
| Sonny Fodera | 464k | +4.44% |
| Ian Asher | 389k | +0.54% |
| Nathan Dawe | 384k | +2.43% |
| Odd Mob | 211k | +5.20% |
| James Hype | 649k | +4.40% |
| it's murph | 262k | +10.69% |
| nimino | 351k | +6.57% |
| In Parallel | 210k | +6.28% |
| Shankz | 127k | +13.77% |
| all things break | 73k | +23.22% |
| John Summit | 679k | +7.20% |
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