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 |
|---|---|---|
| Sabrina Carpenter | 3.4M | +3.08% |
| Olivia Rodrigo | 3.3M | +5.88% |
| Gracie Abrams | 1.9M | +4.82% |
| Chappell Roan | 2.7M | +3.55% |
| Dua Lipa | 3.4M | +3.14% |
| Lorde | 3.8M | +2.19% |
| Maisie Peters | 709k | +3.87% |
| Kelsea Ballerini | 497k | +1.95% |
| Selena Gomez | 3.3M | +2.69% |
| Harry Styles | 3.5M | +3.89% |
| Kacey Musgraves | 1.2M | +2.64% |
| Lana Del Rey | 5.4M | +2.31% |
| Conan Gray | 2.5M | +2.92% |
| Ariana Grande | 4.6M | +3.32% |
| Tate McRae | 2.4M | +3.35% |
| Madison Beer | 1.8M | +3.97% |
| Carly Rae Jepsen | 3.1M | +3.15% |
| Maren Morris | 536k | +1.77% |
| Audrey Hobert | 407k | +51.85% |
| Katy Perry | 7.3M | +2.47% |
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