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 ascNo comparison cohort available for this artist yet — showing its own indexed series only.
Indexed to 100 at each series' first observation.
with peers as (
select similar_artist_id as artist_id
from api_artist_similar
where artist_id = $1
),
peer_agg as (
select
ts.snapshot_date,
count(*) as artist_count,
percentile_cont(0.25) within group (order by ts.listeners_indexed) as p25_indexed,
percentile_cont(0.5) within group (order by ts.listeners_indexed) as median_indexed,
percentile_cont(0.75) within group (order by ts.listeners_indexed) as p75_indexed
from api_artist_timeseries ts
join peers p on p.artist_id = ts.artist_id
group by ts.snapshot_date
)
select ts.*, pa.artist_count, pa.p25_indexed, pa.median_indexed, pa.p75_indexed
from api_artist_timeseries ts
left join peer_agg pa on pa.snapshot_date = ts.snapshot_date
where ts.artist_id = $1
order by ts.snapshot_date asc| Artist | Listeners | 13-week growth |
|---|---|---|
| Dom Dolla | 620k | +3.50% |
| James Hype | 648k | +4.29% |
| Fisher | 838k | +3.96% |
| Sidepiece | 177k | +5.82% |
| Kream | 329k | +2.28% |
| Shouse | 547k | +2.24% |
| Joel Corry | 889k | +1.90% |
| Meduza | 1.0M | +2.18% |
| Öwnboss | 355k | +2.54% |
| John Summit | 678k | +7.01% |
| Mau P | 365k | +4.42% |
| Wuki | 219k | +3.22% |
| Biscits | 195k | +2.15% |
| Sam Feldt | 728k | +1.30% |
| Jax Jones | 1.0M | +2.55% |
| AYYBO | 203k | +4.56% |
| Tujamo | 344k | +1.29% |
| Noizu | 315k | +5.19% |
| Switch Disco | 162k | +2.50% |
| Swedish House Mafia | 2.8M | +2.58% |
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