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 |
|---|---|---|
| Lizz Robinett | 204k | +5.49% |
| Sarah Cothran | 472k | +2.90% |
| $i#dzy | 95k | +11.27% |
| Benny Bellson | 221k | +0.34% |
| alexgoffline | 306k | +12.46% |
| Trillian | 305k | +5.92% |
| Show Me the Body, Princess Nokia | 4.2k | +14.99% |
| alex_g_offline | 934k | +5.43% |
| antihoney | 367k | +6.33% |
| CEZK | 291k | +17.86% |
| Sir Mix-A-Lot | 1.2M | +3.60% |
| John + Jane Q. Public | 540k | +0.04% |
| Kodi Rhianne | 90k | +10.48% |
| Sophie Woodhouse | 227k | +9.63% |
| juju<3 | 729k | +4.76% |
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