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 |
|---|---|---|
| Harrison Storm | 289k | +1.02% |
| Mon Rovîa | 271k | +5.49% |
| Hunter Metts | 105k | +9.29% |
| Dave Thomas Junior | 76k | — |
| Wild Rivers | 295k | +1.43% |
| Zach Webb | 73k | +6.89% |
| Ryan Harris | 68k | +8.07% |
| Andrew Belle | 513k | +1.13% |
| Tors | 80k | +2.72% |
| Novo Amor | 1.3M | +3.14% |
| Hans Williams | 165k | +5.01% |
| Leif Vollebekk | 223k | +2.22% |
| The National Forest | 25k | +14.65% |
| Kyle McEvoy | 236k | — |
| Ocie Elliott | 289k | +2.32% |
| Gert Taberner | 38k | +2.19% |
| The Paper Kites | 1.2M | +2.17% |
| Hayden Calnin | 154k | +1.61% |
| Michael Marcagi | 402k | +3.00% |
| Asiris | 51k | — |
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