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 |
|---|---|---|
| Chance Peña | 813k | +2.75% |
| Ethan Regan | 93k | +9.91% |
| GoldFord | 228k | +7.73% |
| Buffalo Traffic Jam | 98k | +34.69% |
| Hazlett | 275k | +5.43% |
| Richy Mitch & The Coal Miners | 1.4M | +2.90% |
| John Vincent III | 359k | +2.89% |
| Evening Elephants | 122k | +15.20% |
| Michael Marcagi | 402k | +3.00% |
| Brenn! | 283k | +6.92% |
| Hunter Metts | 105k | +9.29% |
| Josiah and the Bonnevilles | 192k | +3.09% |
| The Sways | 87k | +48.98% |
| Mt. Joy | 715k | +2.55% |
| River Whyless | 316k | +3.12% |
| Oliver Hazard | 115k | +2.45% |
| Caamp | 474k | +2.44% |
| Ryan Harris | 68k | +8.07% |
| Noah Kahan | 1.7M | +5.39% |
| Woodlock | 160k | +2.09% |
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