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 |
|---|---|---|
| orion sun | 1.2M | +0.84% |
| chenayder | 192k | +4.19% |
| bLAck pARty | 462k | +1.04% |
| Fousheé | 447k | +5.06% |
| Dua Saleh | 239k | +4.45% |
| Matt Martians | 396k | +27.20% |
| Fana Hues | 160k | +4.15% |
| Hope Tala | 348k | +1.41% |
| Ley Soul | 460k | +8.26% |
| Omar Apollo | 1.6M | +5.29% |
| The Internet | 1.2M | +2.17% |
| Syd | 369k | +5.88% |
| BLK ODYSSY | 301k | +1.49% |
| Berhana | 329k | +0.66% |
| Infinity Song | 232k | +7.32% |
| Ravyn Lenae | 1.9M | +7.60% |
| Ambré | 174k | +3.65% |
| Raveena | 620k | +1.29% |
| Mereba | 315k | +1.72% |
| Romeo + Juliet | 32 | +3.23% |
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