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 |
|---|---|---|
| Rocketship | 254k | +4.30% |
| Dolly Mixture | 97k | — |
| The Pastels | 317k | +1.37% |
| Tiger Trap | 163k | +2.63% |
| Another Sunny Day | 173k | +1.63% |
| Lilys | 199k | +3.91% |
| The Field Mice | 238k | +1.17% |
| The Pains of Being Pure at Heart | 755k | +1.09% |
| Marine Girls | 144k | — |
| Beat Happening | 359k | +0.79% |
| Velocity Girl | 110k | +3.04% |
| The Cat's Miaow | 150k | — |
| Saturday Looks Good To Me | 275k | +1.62% |
| Dear Nora | 224k | +1.55% |
| Talulah Gosh | 104k | +1.76% |
| The 6ths | 162k | +1.72% |
| Damon & Naomi | 58k | +0.68% |
| Vivian Girls | 267k | +0.46% |
| Swirlies | 275k | +2.47% |
| The Vaselines | 318k | +1.18% |
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