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 |
|---|---|---|
| Gregory Alan Isakov | 1.2M | +3.35% |
| Hazlett | 275k | +5.43% |
| Kyle McEvoy | 236k | — |
| The Sways | 87k | +48.98% |
| Jon and Roy | 138k | — |
| Dave Thomas Junior | 76k | — |
| Ocie Elliott | 289k | +2.32% |
| Hollow Coves | 648k | +2.93% |
| Harrison Storm | 289k | +1.02% |
| Jesse Woods | 129k | +3.57% |
| Luca Fogale | 108k | +1.48% |
| Asiris | 51k | — |
| Novo Amor | 1.3M | +3.14% |
| Roo Panes | 416k | +0.61% |
| Michael Marcagi | 402k | +3.00% |
| Charlie Cunningham | 303k | +1.00% |
| Richy Mitch & The Coal Miners | 1.4M | +2.90% |
| Ike Dweck | 55k | +16.87% |
| Noah Kahan | 1.7M | +5.39% |
| Bon Iver | 3.6M | +1.38% |
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