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 |
|---|---|---|
| Orlandivo | 79k | +6.41% |
| Ana Mazzotti | 188k | +4.36% |
| Tamba 4 | 143k | +4.07% |
| Marcos Valle | 608k | +3.15% |
| Johnny Alf | 113k | +2.75% |
| Walter Wanderley | 358k | +2.94% |
| Sérgio Mendes & Brasil '66 | 44k | +0.58% |
| Claudya | 219k | +6.64% |
| Toco | 268k | +6.14% |
| Quinteto Ternura | 49k | +5.72% |
| Roberto Menescal E Seu Conjunto | 124k | +2.93% |
| Arthur Verocai | 437k | +4.40% |
| Os Cariocas | 156k | +1.73% |
| Rosinha de Valença | 123k | +3.18% |
| João Donato | 328k | +2.22% |
| Trio Ternura | 163k | +8.85% |
| Sabrina Malheiros | 93k | — |
| Rosalia De Souza | 202k | +2.15% |
| Sergio Mendes & Brasil '66 | 640k | +2.84% |
| Agustin Pereyra Lucena | 161k | +7.16% |
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