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 ascIndexed to 100 at each series' first observation.
select
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 |
|---|---|---|
| BossaCucaNova | 184k | — |
| Sabrina Malheiros | 93k | — |
| Toco | 268k | +6.14% |
| Bebel Gilberto | 637k | +0.95% |
| Roberto Menescal E Seu Conjunto | 124k | +2.93% |
| Nicola Conte | 450k | — |
| Tamba 4 | 143k | +4.07% |
| S-Tone Inc. | 131k | — |
| Sérgio Mendes & Brasil '66 | 44k | +0.58% |
| Os Cariocas | 156k | +1.73% |
| Bossa Nostra | 67k | — |
| Sergio Mendes & Brasil '66 | 640k | +2.84% |
| Marcos Valle | 608k | +3.15% |
| Ed Lincoln | 77k | +1.52% |
| Quarteto Em Cy | 261k | +3.34% |
| João Donato | 328k | +2.22% |
| Ana Mazzotti | 188k | +4.36% |
| Agustin Pereyra Lucena | 161k | +7.16% |
| Maria Toledo | 71k | +5.56% |
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