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 |
|---|---|---|
| Clara Luciani | 158k | +2.14% |
| Juliette Armanet | 119k | +1.87% |
| Yoa | 42k | +6.40% |
| Paloma | 58k | — |
| Cœur de Pirate | 332k | +0.86% |
| Marina Kaye | 53k | +1.54% |
| Ally Bakst | 39k | +35.98% |
| Benjamin Biolay | 237k | +0.47% |
| Jain | 511k | +2.35% |
| La Zarra | 99k | +2.11% |
| Olivia Ruiz | 185k | +0.71% |
| Francis Cabrel | 231k | +1.83% |
| Christophe Maé | 106k | +2.44% |
| Camille Lellouche | 16k | +3.51% |
| Charlie Winston | 214k | +0.38% |
| Patrick Watson | 1.7M | +2.25% |
| Silly Boy Blue | 39k | +1.13% |
| Damiano David | 426k | +5.06% |
| We Are Fury | 61k | +1.48% |
| Ambre | 8.9k | — |
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