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 |
|---|---|---|
| Greentea Peng | 356k | +2.10% |
| Rubii | 420k | +5.28% |
| Qendresa | 270k | +11.09% |
| Ojerime | 308k | +1.19% |
| Rimon | 184k | — |
| Anaiis | 117k | +7.34% |
| bina. | 88k | +4.80% |
| IAMDDB | 229k | +1.80% |
| JGRREY | 216k | +2.46% |
| Cleo Sol | 685k | +4.31% |
| Pip Millett | 211k | +2.65% |
| Amaria | 261k | +3.97% |
| VBND | 211k | +2.45% |
| Rayana Jay | 334k | +0.94% |
| Enny | 355k | +2.94% |
| Charlotte Day Wilson | 473k | +1.31% |
| Mereba | 315k | +1.78% |
| Sault | 643k | +3.42% |
| Rosie Lowe | 163k | +1.16% |
| Ray Lozano | 218k | +0.46% |
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