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 |
|---|---|---|
| Arabesque | 95k | +0.88% |
| Eruption | 177k | +1.54% |
| Ottawan | 238k | +1.83% |
| Tina Charles | 193k | +1.20% |
| F.R. David | 444k | +3.34% |
| Amanda Lear | 149k | +0.65% |
| Boney M. | 2.1M | +2.85% |
| Goombay Dance Band | 90k | +0.73% |
| Dschinghis Khan | 300k | +2.88% |
| C.C. Catch | 179k | +1.51% |
| Blue System | 109k | +0.66% |
| Santa Esmeralda | 375k | +0.44% |
| Gloria Gaynor | 1.6M | +4.18% |
| Bad Boys Blue | 254k | +1.78% |
| Smokie | 476k | +0.70% |
| Anita Ward | 442k | +6.55% |
| Modern Talking | 1.4M | +2.51% |
| Fancy | 186k | +3.92% |
| Patrick Hernandez | 370k | +3.05% |
| Amii Stewart | 220k | +2.03% |
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