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 |
|---|---|---|
| Mick Gordon & Chad Mossholder | 7.8k | +1.79% |
| Finishing Move Inc. | 39k | +8.05% |
| Andrew Hulshult | 55k | +4.19% |
| Sonic Mayhem | 68k | +0.88% |
| Marcin Przybyłowicz | 392k | +3.26% |
| Frank Klepacki | 197k | +0.88% |
| MASTER BOOT RECORD | 105k | +2.02% |
| Heaven Pierce Her | 172k | +10.11% |
| Inon Zur | 297k | +1.48% |
| 3TEETH | 173k | +2.12% |
| Static-X | 1.6M | +1.06% |
| Jamie Christopherson | 79k | +2.29% |
| Rob Zombie | 2.4M | +1.95% |
| Rammstein | 3.2M | +1.54% |
| Fear Factory | 919k | +0.94% |
| The Flight | 93k | +3.33% |
| zYnthetic | 34k | +1.87% |
| Sybreed | 110k | +0.84% |
| Lindemann | 222k | +1.76% |
| Powerman 5000 | 872k | +1.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