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 |
|---|---|---|
| Luci4 | 618k | +3.41% |
| kyszenn | 141k | +5.11% |
| Sonicreations! | 92k | +10.08% |
| K3NT4! | 197k | +5.02% |
| Bossa | 101k | +7.84% |
| QKReign | 135k | +8.37% |
| Tiishe | 104k | +7.36% |
| 9Lives | 269k | +3.27% |
| Riovaz | 557k | +0.15% |
| 4jay Archive | 58k | +3.35% |
| Lumi Athena | 673k | +3.50% |
| *67 | 131k | +7.19% |
| 7sirens | 102k | +6.57% |
| lexycat | 190k | +0.67% |
| Marluxiam | 186k | +2.90% |
| Odetari | 1.2M | +4.65% |
| ODECORE | 391k | +5.23% |
| removeface | 209k | +6.63% |
| Godard | 166k | — |
| h3artCrush | 170k | +4.00% |
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