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 |
|---|---|---|
| Snail Mail | 650k | +1.76% |
| Lala Lala | 272k | +1.98% |
| girlsweetvoiced | 85k | +47.11% |
| Hemlocke Springs | 511k | +3.09% |
| Holly Humberstone | 598k | +8.15% |
| Carla dal Forno | 103k | — |
| Kevin Morby | 449k | +2.89% |
| MUNA | 787k | +2.87% |
| This is Lorelei | 206k | +13.84% |
| feeble little horse | 357k | +8.78% |
| Deb Never | 277k | — |
| Ian Sweet | 135k | +5.46% |
| Lykke Li | 3.3M | +2.72% |
| Nilüfer Yanya | 523k | +1.94% |
| spill tab | 368k | +3.26% |
| Tiffany Day | 480k | +33.38% |
| Chanel Beads | 272k | +13.96% |
| Ryan Beatty | 434k | +9.15% |
| Samia | 587k | +3.95% |
| Cootie Catcher | 22k | +12.06% |
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