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 |
|---|---|---|
| Donovan Woods | 200k | +0.73% |
| Hazlett | 275k | +5.43% |
| Leif Vollebekk | 223k | +2.22% |
| Old Sea Brigade | 293k | +1.01% |
| John Vincent III | 359k | +2.89% |
| Caamp | 474k | +2.44% |
| Oliver Hazard | 115k | +2.45% |
| Ocie Elliott | 289k | +2.32% |
| Mon Rovîa | 271k | +5.49% |
| Canyon City | 127k | +0.60% |
| Hollow Coves | 648k | +2.93% |
| The Paper Kites | 1.2M | +2.17% |
| Noah Kahan | 1.7M | +5.39% |
| Ziggy Alberts | 154k | +1.54% |
| Beta Radio | 306k | +0.58% |
| Sons of the East | 214k | +1.62% |
| Michael Marcagi | 402k | +3.00% |
| The Head and the Heart | 1.2M | +1.07% |
| Chance Peña | 813k | +2.75% |
| Stephen Day | 139k | — |
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