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 |
|---|---|---|
| Pino | 184k | +19.89% |
| Karri | 218k | +10.90% |
| Chase Shakur | 393k | +2.21% |
| Che Ecru | 249k | +2.98% |
| Dylan Sinclair | 105k | +5.74% |
| Alan Vuong | 349k | +0.30% |
| Devkota | 71k | +30.78% |
| Ryan Trey | 209k | +1.81% |
| Avenoir | 566k | +6.97% |
| Jordan Adetunji | 565k | +4.29% |
| RAAHiiM | 106k | +2.90% |
| Zeke Bleu | 76k | +9.90% |
| Maz B | 139k | +9.49% |
| Sahxl | 77k | +12.42% |
| Tory Lanez | 2.1M | +4.05% |
| Myles Lloyd | 222k | +10.21% |
| Kili | 59k | +28.36% |
| 4batz | 694k | +2.61% |
| jaydes archive | 112k | +11.68% |
| PARTYNEXTDOOR | 2.1M | +3.34% |
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