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 |
|---|---|---|
| Elle King | 772k | +2.73% |
| LOLO | 194k | +2.45% |
| ZZ Ward | 160k | +1.13% |
| Alice Merton | 448k | +1.55% |
| The Asteroids Galaxy Tour | 465k | +0.35% |
| Bishop Briggs | 675k | +2.48% |
| MILCK | 78k | +2.07% |
| Haley Reinhart | 385k | +1.76% |
| Meg Myers | 444k | +3.85% |
| Lola Marsh | 270k | +1.98% |
| Jetta | 241k | — |
| Valerie Broussard | 186k | +1.90% |
| Delta Rae | 191k | +1.51% |
| Kovacs | 124k | +1.48% |
| K.Flay | 1.1M | +2.80% |
| Paloma Faith | 1.2M | +1.82% |
| X Ambassadors | 1.2M | +1.77% |
| Zella Day | 807k | +1.43% |
| Earl | 78k | +3.27% |
| Foreign Air | 285k | +1.35% |
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