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 |
|---|---|---|
| Milo Manheim | 154k | +8.92% |
| Kylie Cantrall | 153k | +14.89% |
| ZOMBIES – Cast | 56k | +7.14% |
| Thomas Day | 171k | +5.95% |
| Lauren Spencer Smith | 389k | +2.28% |
| Dove Cameron | 1.3M | +3.34% |
| Ed Sheeran & Justin Bieber | 208k | +5.78% |
| Lucas Grabeel | 131k | +12.32% |
| Joshua Bassett | 369k | +1.86% |
| Mimi Webb | 344k | +1.06% |
| Descendants – Cast | 44k | +11.61% |
| Ella Bright | 55k | +1.72% |
| Zac Efron | 922k | +3.79% |
| Sofia Carson | 408k | +4.51% |
| Perrie | 151k | +1.93% |
| Nick Jonas | 1.4M | +2.94% |
| Cast - Liv and Maddie | 198k | +5.71% |
| Holly Humberstone | 598k | +8.15% |
| Hannah Montana | 1.2M | +2.57% |
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