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 |
|---|---|---|
| Robyn | 2.1M | +3.36% |
| Tove Lo | 2.6M | +4.21% |
| Kim Petras | 1.3M | +5.17% |
| Charli xcx | 3.9M | +2.82% |
| Foxes | 528k | +0.90% |
| Jessie Ware | 1.2M | +1.44% |
| Rina Sawayama | 1.2M | +1.76% |
| Kylie Minogue | 3.7M | +3.36% |
| Rebecca Black | 592k | +4.82% |
| Ke$ha | 2.4M | +0.17% |
| Dagny | 294k | +2.17% |
| Hilary Duff | 1.4M | +1.21% |
| Aly & AJ | 1.1M | +1.48% |
| Ellie Goulding | 4.1M | +2.86% |
| Dua Lipa | 3.4M | +3.14% |
| Rose Gray | 241k | +13.83% |
| Lorde | 3.8M | +2.19% |
| Allie X | 881k | +2.24% |
| Sigrid | 673k | +1.62% |
| Betty Who | 379k | +0.60% |
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