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 |
|---|---|---|
| Self | 392k | +8.67% |
| Forrest Day | 89k | +10.84% |
| Stephanie Mabey | 302k | +9.65% |
| Kodi Rhianne | 90k | +10.48% |
| Sir Mix-A-Lot | 1.2M | +3.60% |
| Tally Hall | 1.2M | +3.09% |
| The Hoosiers | 701k | +1.11% |
| Baby Bugs | 189k | +6.53% |
| carpetgarden | 257k | +1.56% |
| human people | 72k | +2.56% |
| Ludo | 256k | +2.29% |
| Liam Lynch | 347k | +1.60% |
| The Young Veins | 214k | +2.17% |
| Gorillaz, Kali Uchis | 31k | +5.35% |
| of Montreal | 1.7M | +1.60% |
| Elysian Fields | 253k | +5.83% |
| Rare Americans | 264k | +2.91% |
| Forgive Durden | 144k | +0.53% |
| They Might Be Giants | 1.3M | +1.84% |
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