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 |
|---|---|---|
| Charli xcx | 3.9M | +2.82% |
| Lorde | 3.8M | +2.19% |
| Rina Sawayama | 1.2M | +1.76% |
| Grimes | 2.8M | +2.69% |
| Caroline Polachek | 1.1M | +2.22% |
| Allie X | 881k | +2.24% |
| Club Eat | 34k | — |
| Kim Petras | 1.3M | +5.17% |
| Robyn | 2.1M | +3.36% |
| Slayyyter | 1.1M | +18.29% |
| Addison Rae | 1.7M | +6.34% |
| Ramona Lisa | 99k | +1.72% |
| Marina | 2.4M | +3.83% |
| Troye Sivan | 2.5M | +2.75% |
| Chairlift | 892k | +0.76% |
| Marina & the Diamonds | 768k | +0.09% |
| Lykke Li | 3.3M | +2.72% |
| Lana Del Rey | 5.4M | +2.31% |
| Natalia Kills | 786k | +1.37% |
| Carly Rae Jepsen | 3.1M | +3.15% |
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