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 |
|---|---|---|
| keiyaA | 68k | +1.86% |
| Anaiis | 116k | +7.12% |
| Jamila Woods | 217k | +0.65% |
| Greentea Peng | 356k | +2.03% |
| Yazmin Lacey | 225k | +3.21% |
| Sudan Archives | 394k | +2.23% |
| Sault | 642k | +3.33% |
| Mereba | 315k | +1.72% |
| Madison McFerrin | 177k | +0.70% |
| Lady Wray | 200k | +1.89% |
| Ari Lennox | 578k | +1.97% |
| Arlo Parks | 784k | +2.08% |
| Liv.e | 230k | +1.09% |
| Rosie Lowe | 163k | +1.12% |
| Ego Ella May | 88k | +2.78% |
| Charlotte Day Wilson | 473k | +1.27% |
| Joy Crookes | 594k | +8.26% |
| Obongjayar | 196k | +2.79% |
| Amber Mark | 555k | +2.38% |
| Rayana Jay | 334k | +0.92% |
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