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 ascIndexed 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 |
|---|---|---|
| Tiziano Ferro | 375k | +1.72% |
| Giorgia | 155k | +0.80% |
| Eros Ramazzotti | 621k | +1.74% |
| Thalía | 275k | +0.13% |
| Deborah Blando | 39k | +3.86% |
| Alessandra Amoroso | 71k | +1.21% |
| Alejandro Sanz | 715k | +2.52% |
| Céline Dion | 2.2M | +1.48% |
| Nek | 276k | +3.10% |
| Ricardo Montaner | 244k | +2.67% |
| Elisa | 345k | +1.31% |
| Gianluca Grignani | 230k | +4.02% |
| Lara Fabian | 360k | +0.77% |
| Noelia | 90k | +3.43% |
| Alex Ubago | 255k | +2.55% |
| Cristian Castro | 271k | +3.74% |
| La Oreja de Van Gogh | 675k | +2.03% |
| La Quinta Estación | 56k | +0.54% |
| Paulina Rubio | 476k | +1.62% |
| Chayanne | 531k | +2.48% |
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