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 |
|---|---|---|
| Lemonade Mouth | 22k | +0.99% |
| Amanda Seyfried | 675k | +3.27% |
| High School Musical | 163k | +0.07% |
| Victorious Cast | 659k | +4.82% |
| Adam Hicks | 375k | +4.36% |
| Descendants – Cast | 44k | +11.61% |
| Zac Efron | 922k | +3.79% |
| Austin Moon | 203k | +3.79% |
| Joshua Bassett | 369k | +1.86% |
| Meryl Streep | 929k | +6.35% |
| Big Time Rush | 846k | +2.71% |
| Lily James | 272k | +2.76% |
| We Three | 109k | — |
| ZOMBIES – Cast | 56k | +7.14% |
| Cast - Liv and Maddie | 198k | +5.71% |
| Wicked Movie Cast | 344k | +1.79% |
| Why Don't We | 781k | +3.45% |
| China Anne McClain | 442k | +4.35% |
| Ross Lynch | 418k | +0.40% |
| Jorge Blanco | 99k | +4.77% |
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