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 |
|---|---|---|
| Rotary Connection | 119k | — |
| Adrian Quesada | 98k | +4.56% |
| Kamaal Williams | 135k | +1.41% |
| El Michels Affair | 550k | +2.41% |
| Roy Ayers | 498k | +0.75% |
| Sault | 643k | +3.42% |
| Butcher Brown | 144k | +2.35% |
| Nubiyan Twist | 122k | +4.61% |
| Tony Allen | 301k | +0.92% |
| Monophonics | 227k | +3.32% |
| Cymande | 390k | +1.85% |
| Yazmin Lacey | 225k | +3.33% |
| Flea | 223k | +7.28% |
| Lonnie Liston Smith | 263k | +2.03% |
| The Blackbyrds | 388k | +3.89% |
| Surprise Chef | 188k | +2.92% |
| Me'Shell Ndegéocello | 173k | +0.05% |
| Gary Bartz | 101k | +1.31% |
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