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 |
|---|---|---|
| Allie X | 881k | +2.24% |
| Marina & the Diamonds | 768k | +0.09% |
| Aurora | 1.9M | +3.91% |
| Rina Sawayama | 1.2M | +1.76% |
| Zella Day | 807k | +1.43% |
| Lily Allen | 3.9M | +2.10% |
| Lady Gaga | 7.9M | +1.78% |
| Sky Ferreira | 1.5M | +3.96% |
| Melanie Martinez | 2.4M | +3.28% |
| Lorde | 3.8M | +2.19% |
| Chappell Roan | 2.7M | +3.55% |
| Poppy | 1.2M | +3.23% |
| Lana Del Rey | 5.4M | +2.31% |
| Ava Max | 1.7M | +3.39% |
| Tove Lo | 2.6M | +4.21% |
| Studio Killers | 724k | +5.85% |
| Ke$ha | 2.4M | +0.17% |
| Sohodolls | 795k | +4.37% |
| Foxes | 528k | +0.90% |
| Charli xcx | 3.9M | +2.82% |
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