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 |
|---|---|---|
| 梅林茂 | 35k | +0.17% |
| Dario Marianelli | 843k | +1.47% |
| Invadable Harmony | 444k | +2.52% |
| Clint Mansell | 1.1M | +0.84% |
| Peter Gundry | 246k | +3.22% |
| Fernando Velázquez | 158k | +1.37% |
| Alexandre Desplat | 1.2M | +1.07% |
| Fabrizio Paterlini | 739k | +1.44% |
| Joshua Kyan Aalampour | 318k | +5.22% |
| Carlos Rafael Rivera | 178k | +1.89% |
| Armand Amar | 93k | +0.93% |
| Rachel Portman | 407k | +0.82% |
| James Newton Howard | 1.1M | +1.63% |
| Jacob's Piano | 127k | +3.39% |
| Martin Phipps | 115k | +2.53% |
| Yann Tiersen | 1.9M | +0.61% |
| Wojciech Kilar | 204k | +0.87% |
| Craig Armstrong | 780k | +0.66% |
| Zbigniew Preisner | 392k | +0.51% |
| Roberto Cacciapaglia | 224k | +0.68% |
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