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 |
|---|---|---|
| Butti 49 | 30k | +0.14% |
| Slow Train Soul | 58k | +0.51% |
| Marsmobil | 92k | +1.74% |
| Meitz | 65k | +0.09% |
| Zimpala | 136k | +0.42% |
| Rainstick Orchestra | 27k | +0.06% |
| Soma Sonic | 79k | +4.25% |
| The Funky Lowlives | 202k | +0.27% |
| Sonar Kollektiv Orchester | 50k | +0.74% |
| The Mighty Bop | 73k | +1.48% |
| Variety Lab | 175k | — |
| P'taah | 21k | +0.30% |
| Zofka | 74k | +0.12% |
| Briskey | 65k | +0.05% |
| Povo | 72k | +0.10% |
| Bobby Hughes Combination | 95k | +0.17% |
| Micatone | 291k | +0.65% |
| Moca | 82k | +0.92% |
| Saint Privat | 156k | +0.89% |
| Nuspirit Helsinki | 211k | +0.08% |
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