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 |
|---|---|---|
| suffershade | 113k | +2.68% |
| ASHESS | 98k | +2.25% |
| Nectry | 115k | +4.85% |
| dvw logic | 56k | +9.64% |
| leadwave | 320k | +4.41% |
| fadinglight | 62k | +20.56% |
| eenspire | 31k | +6.30% |
| Yehezkel Raz | 736k | +2.84% |
| Øneheart | 1.1M | +3.52% |
| Mathbonus | 183k | — |
| my!lane | 212k | +2.38% |
| Antent | 350k | +3.40% |
| Aljosha Konstanty | 23k | +0.08% |
| .diedlonely | 344k | +5.52% |
| blawhitt | 117k | +3.70% |
| Ødyzon | 112k | +6.39% |
| Reidenshi | 163k | +4.82% |
| Futureville | 71k | +20.61% |
| analog_mannequin | 174k | +4.23% |
| endless withdrawal | 113k | +6.52% |
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