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 ascNo comparison cohort available for this artist yet — showing its own indexed series only.
Indexed to 100 at each series' first observation.
select
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 |
|---|---|---|
| Unusual Demont | 192k | +1.23% |
| THEY. | 307k | +1.86% |
| Chiiild | 208k | +1.30% |
| Jenevieve | 501k | +11.42% |
| Christian Kuria | 418k | +3.88% |
| Kyle Dion | 240k | +2.32% |
| Alina Baraz | 942k | +1.69% |
| Cautious Clay | 522k | +1.33% |
| Mahalia | 540k | +1.48% |
| Majid Jordan | 623k | +4.03% |
| Gallant | 406k | +1.61% |
| NO GUIDNCE | 153k | +5.40% |
| 3ee | 145k | +5.30% |
| Sabrina Claudio | 680k | +1.83% |
| Hailey Knox | 224k | +3.79% |
| Hojean | 361k | +2.83% |
| Bren Joy | 171k | +2.46% |
| Bayli | 232k | +7.93% |
| Arin Ray | 216k | +2.56% |
| UMI | 923k | +2.19% |
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