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 ascselect
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 |
|---|---|---|
| President | 125k | +16.99% |
| Bad Omens | 847k | +5.10% |
| The Pretty Wild | 78k | +9.54% |
| Bring Me the Horizon | 2.9M | +2.35% |
| Sleep Theory | 220k | +11.40% |
| Sleep Token | 888k | +0.20% |
| The Plot in You | 474k | +5.10% |
| Sace6 | 93k | +21.19% |
| Spiritbox | 595k | +5.76% |
| I Prevail | 617k | +3.93% |
| Motionless in White | 956k | +4.92% |
| Future Palace | 96k | +4.49% |
| Dayseeker | 290k | +5.66% |
| Amira Elfeky | 375k | +0.31% |
| Vana | 152k | +8.30% |
| UMC | 34k | +1.59% |
| Anthony Vincent | 70k | +4.52% |
| Djerv | 107k | +1.43% |
| Cenobita | 4.7k | — |
| Elena Siegman | 220k | +8.73% |
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