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 |
|---|---|---|
| Freya Skye | 100k | +27.10% |
| Dove Cameron | 1.3M | +3.34% |
| Descendants – Cast | 44k | +11.61% |
| Sofia Carson | 408k | +4.51% |
| Milo Manheim | 154k | +8.92% |
| KARLEE GIRL | 191k | +1.93% |
| Say Now | 223k | +0.41% |
| Bratz | 90k | — |
| China Anne McClain | 442k | +4.35% |
| GIRLSET | 209k | +2.21% |
| Madison Beer | 1.8M | +3.97% |
| Cast - Liv and Maddie | 198k | +5.71% |
| Keke Palmer | 205k | +2.52% |
| Zendaya | 572k | +6.57% |
| ZOMBIES – Cast | 56k | +7.14% |
| Tate McRae | 2.4M | +3.35% |
| Joshua Bassett | 369k | +1.86% |
| Boys World | 137k | +1.03% |
| Ariana Grande | 4.6M | +3.32% |
| KATSEYE | 1.7M | +6.43% |
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