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 |
|---|---|---|
| Drugstore | 95k | — |
| Tanya Donelly | 52k | +0.65% |
| Blake Babies | 50k | +3.19% |
| Belly | 735k | +1.62% |
| Throwing Muses | 260k | +1.26% |
| Velocity Girl | 110k | +3.04% |
| Juliana Hatfield | 205k | +2.67% |
| The Juliana Hatfield Three | 80k | +1.83% |
| Buffalo Tom | 148k | +0.82% |
| Magnapop | 44k | — |
| Helium | 88k | +1.37% |
| The Amps | 130k | +1.43% |
| The Wedding Present | 265k | +0.72% |
| Echobelly | 171k | +0.89% |
| Bettie Serveert | 124k | +0.74% |
| Kristin Hersh | 157k | +0.82% |
| The Breeders | 1.2M | +1.69% |
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