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 |
|---|---|---|
| Crayon | 309k | +6.29% |
| spawncamped | 75k | +29.03% |
| MISTVALE | 29k | +23.72% |
| Ankle | 58k | +8.45% |
| zombiwebz | 51k | +57.74% |
| awake after dark | 36k | +27.60% |
| Bunii | 130k | +18.52% |
| Otuka | 297k | +7.98% |
| guitarbf | 41k | +22.95% |
| Aeter | 75k | +11.79% |
| Anxiety | 29k | — |
| s0rrow | 105k | +75.72% |
| talking after hours | 37k | +20.85% |
| adorken | 72k | +10.15% |
| plaxz | 37k | +45.79% |
| Lucille | 84k | +10.07% |
| revivle | 20k | +15.97% |
| bruxely! | 41k | +16.47% |
| duskydemise archive | 36k | +133.86% |
| Margiela | 87k | +11.24% |
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