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 |
|---|---|---|
| Goldie Boutilier | 252k | +10.74% |
| Lily Allen | 3.9M | +2.10% |
| Rachel Chinouriri | 796k | +3.95% |
| RAYE | 2.0M | +4.87% |
| Olivia Dean | 1.6M | +8.05% |
| Remi Wolf | 1.0M | +4.50% |
| Jade | 655k | +0.12% |
| Arlo Parks | 785k | +2.18% |
| Doja Cat | 3.8M | +3.10% |
| Lorde | 3.8M | +2.19% |
| Halsey | 3.0M | +3.28% |
| Willow | 2.5M | +4.20% |
| Raleigh Ritchie | 239k | +1.27% |
| Jae Stephens | 188k | +10.93% |
| DUDA BEAT | 295k | +2.71% |
| King Princess | 1.0M | +1.41% |
| Jessie Reyez | 612k | +3.81% |
| Joy Crookes | 596k | +8.56% |
| Madison Beer | 1.8M | +3.97% |
| Khalid | 2.4M | +3.69% |
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