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 |
|---|---|---|
| Hundred Reasons | 167k | +0.44% |
| Fightstar | 290k | +0.45% |
| Lostprophets | 1.5M | +0.19% |
| Hell Is For Heroes | 122k | +0.27% |
| Feeder | 985k | +0.66% |
| A | 268k | +1.16% |
| Funeral For A Friend | 844k | +0.61% |
| Lonely The Brave | 129k | +0.33% |
| Biffy Clyro | 1.2M | +0.59% |
| Reuben | 102k | +0.41% |
| Marmaduke Duke | 106k | +0.19% |
| Twin Atlantic | 300k | +0.58% |
| Young Guns | 227k | +0.38% |
| Finch | 833k | +1.45% |
| The Music | 393k | +0.33% |
| Kids in Glass Houses | 246k | +0.20% |
| Mallory Knox | 123k | +0.74% |
| My Vitriol | 129k | — |
| Madina Lake | 328k | +0.55% |
| Dinosaur Pile-Up | 200k | +1.71% |
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