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 |
|---|---|---|
| Fear Before the March of Flames | 229k | +1.00% |
| Hail The Sun | 397k | +8.29% |
| A Lot Like Birds | 118k | +2.27% |
| Chiodos | 792k | +2.23% |
| Glassjaw | 469k | +1.62% |
| The Blood Brothers | 380k | +0.53% |
| Protest the Hero | 369k | +1.19% |
| Circa Survive | 855k | +2.82% |
| The Number Twelve Looks Like You | 187k | +1.05% |
| Dance Gavin Dance | 851k | +5.04% |
| The Sound of Animals Fighting | 254k | +0.33% |
| Closure in Moscow | 206k | +0.71% |
| Sianvar | 74k | +9.02% |
| Secret Band | 53k | +2.21% |
| I Set My Friends on Fire | 304k | +3.56% |
| At the Drive-In | 892k | +1.03% |
| Duck Duck Goose | 35k | +1.83% |
| From First to Last | 829k | +1.38% |
| The Dillinger Escape Plan | 629k | +0.96% |
| Thursday | 790k | +1.39% |
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