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 |
|---|---|---|
| Ethan Bortnick | 255k | +2.95% |
| Jace June | 172k | +7.56% |
| Natori | 315k | +0.25% |
| Madelline | 148k | +5.44% |
| imase | 434k | +8.22% |
| 9Lana | 120k | +14.81% |
| Unlike Pluto | 539k | +2.97% |
| Kocchi no Kento | 208k | +7.19% |
| Ado | 750k | +0.32% |
| Alan Walker | 1.9M | +3.68% |
| Parker Jack | 96k | +6.28% |
| Creepy Nuts | 648k | +0.24% |
| Alexandria | 39k | — |
| Tokyo Manaka | 40k | +33.23% |
| Rokudenashi | 94k | +8.17% |
| Dream | 468k | +1.86% |
| SawanoHiroyuki[nZk] | 241k | +4.72% |
| John Michael Howell | 235k | +15.04% |
| Aina The End | 236k | — |
| Oliver Tree | 1.7M | +12.74% |
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