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 |
|---|---|---|
| Danzel | 270k | +2.05% |
| The Adventures Of Stevie V | 288k | +7.63% |
| Adventures of Stevie V | 17k | — |
| Cloonee | 308k | +7.18% |
| Fisher | 839k | +4.07% |
| Mason vs. Princess Superstar | 41k | +0.19% |
| PAWSA | 450k | +6.95% |
| Mau P | 365k | +4.52% |
| ACRAZE | 511k | +1.78% |
| Edward Maya & Vika Jigulina | 144k | +1.05% |
| Alex Gaudino | 1.0M | +2.18% |
| Dom Dolla | 620k | +3.58% |
| LF System | 536k | +5.32% |
| AYYBO | 204k | +4.69% |
| Biscits | 195k | +2.21% |
| Mochakk | 199k | +6.16% |
| Sidepiece | 177k | +5.95% |
| Benny Benassi | 1.8M | +2.15% |
| David Guetta | 5.4M | +2.14% |
| Torren Foot | 381k | +4.88% |
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