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 |
|---|---|---|
| Jin | 883k | +4.14% |
| RM | 843k | +2.95% |
| Tablo | 208k | +4.86% |
| Agust D | 901k | +2.69% |
| Jung Kook | 1.6M | +3.64% |
| 정국 (Jung Kook) | 19k | +5.98% |
| V | 975k | +2.56% |
| Jimin | 935k | +0.11% |
| Lee So Ra | 216k | +3.19% |
| BTS | 2.6M | +3.75% |
| J-hOpE, GloRilla | 26k | +7.05% |
| Psy | 1.8M | +3.47% |
| Rumi | 509k | +4.71% |
| Suran | 284k | +1.92% |
| Balming Tiger | 303k | +4.34% |
| Coldplay, BTS | 46k | +3.78% |
| Jung Kook, Jack Harlow | 47k | +4.38% |
| Jawsh 685 | 561k | +2.99% |
| 방탄소년단 | 59k | +2.06% |
| Juice WRLD, Suga & BTS | 9.2k | +2.93% |
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