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 |
|---|---|---|
| 9090gate | 161k | +13.65% |
| Rooster | 157k | +2.65% |
| fakemink | 551k | +13.20% |
| PureSnow | 146k | +14.51% |
| Elijah Aike | 101k | +19.31% |
| Feng | 399k | +12.23% |
| OSK | 43k | +56.95% |
| Lex Amarni | 236k | +0.98% |
| Maxon | 103k | +9.08% |
| phreshboyswag | 172k | +7.37% |
| EsDeeKid | 1.1M | +9.29% |
| ksuuvi | 153k | +13.31% |
| xemnaschrist | 146k | +16.33% |
| pz' | 105k | +1.22% |
| sniper2004 | 78k | +3.37% |
| Bladee | 1.0M | +3.07% |
| Lancey Foux | 494k | +2.57% |
| Babyxsosa | 291k | +4.84% |
| Jim Legxacy | 247k | +6.52% |
| Thaiboy Digital | 399k | +5.29% |
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