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 |
|---|---|---|
| Minuano | 253k | +5.74% |
| Pantera Blue | 89k | +10.30% |
| João Gilberto | 909k | +2.20% |
| Lamp | 1.1M | +3.11% |
| Toco | 268k | +6.14% |
| Astrud Gilberto | 1.1M | +1.69% |
| Antônio Carlos Jobim | 1.2M | +2.24% |
| Antonio Carlos Jobim & Elis Regina | 30k | +0.20% |
| Luiz Bonfá | 463k | +2.89% |
| Nara Leão | 591k | +2.17% |
| pomodorosa | 91k | +11.69% |
| Liana Flores | 1.3M | +0.20% |
| Vinícius de Moraes | 410k | +3.81% |
| Laufey | 2.5M | +4.74% |
| Arthur Verocai | 437k | +4.40% |
| Toquinho | 718k | +2.74% |
| Marcos Valle | 608k | +3.15% |
| Laurindo Almeida | 432k | +7.26% |
| Sérgio Mendes & Brasil '66 | 44k | +0.58% |
| Frank Sark | 207k | +7.07% |
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