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 |
|---|---|---|
| Marcelo Nova | 31k | — |
| Belchior | 412k | +0.21% |
| Mamonas Assassinas | 427k | +2.36% |
| Legião Urbana | 777k | +2.18% |
| Gabriel O Pensador | 351k | +4.60% |
| Zé Ramalho | 312k | +2.87% |
| Secos & Molhados | 476k | +3.25% |
| Titãs | 512k | +3.28% |
| Camisa de Vênus | 55k | +2.00% |
| Ave Sangria | 127k | +5.71% |
| Supla | 59k | — |
| Engenheiros Do Hawaii | 458k | +2.46% |
| Ultraje A Rigor | 168k | +2.10% |
| Barão Vermelho | 394k | +2.97% |
| Sérgio Sampaio | 152k | +4.31% |
| Alceu Valença | 478k | +0.15% |
| Os Paralamas Do Sucesso | 528k | +2.89% |
| Vitroles | 135k | +5.28% |
| Raimundos | 506k | +2.62% |
| Ney Matogrosso | 459k | +0.12% |
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