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 |
|---|---|---|
| Q | 578k | +2.87% |
| Cautious Clay | 522k | +1.33% |
| bLAck pARty | 462k | +1.04% |
| Lou Val | 164k | +1.28% |
| Chiiild | 208k | +1.30% |
| orion sun | 1.2M | +0.84% |
| Masego | 1.1M | +3.98% |
| Noah Guy | 168k | +4.76% |
| 6LACK | 1.1M | +3.68% |
| Chase Shakur | 392k | +2.12% |
| SiR | 830k | +2.35% |
| Pink Sweat$ | 859k | +2.90% |
| Arin Ray | 216k | +2.56% |
| Berhana | 329k | +0.66% |
| Christian Kuria | 418k | +3.88% |
| Xavier Omär | 227k | +1.01% |
| Choker | 337k | +2.37% |
| Giveon | 1.1M | +0.19% |
| Jordan Ward | 502k | +3.28% |
| Verzache | 792k | +2.55% |
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