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 |
|---|---|---|
| Hayden James | 504k | +1.66% |
| Miami Horror | 799k | +1.13% |
| Kraak & Smaak | 414k | +1.62% |
| Elderbrook | 513k | +2.14% |
| Kazy Lambist | 195k | +1.47% |
| Flume | 2.0M | +2.53% |
| Crazy P | 265k | +2.53% |
| Peking Duk | 293k | +4.32% |
| Safia | 148k | +1.23% |
| ZHU | 928k | +1.48% |
| Disclosure | 2.6M | +3.02% |
| Yuksek | 431k | +0.58% |
| PNAU | 703k | +1.74% |
| RAC | 606k | +0.72% |
| Kaskade | 1.2M | +2.14% |
| Vandelux | 175k | +2.21% |
| Crooked Colours | 239k | +1.47% |
| Kartell | 126k | +2.95% |
| Totally Enormous Extinct Dinosaurs | 458k | +0.03% |
| Lane 8 | 399k | +4.99% |
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