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 |
|---|---|---|
| The Poets of Rhythm | 158k | +1.79% |
| Dojo Cuts | 199k | +4.32% |
| Charles Bradley | 728k | +3.07% |
| The James Hunter Six | 141k | +2.91% |
| Little Beaver | 239k | +3.45% |
| Syl Johnson | 311k | +1.65% |
| Ann Peebles | 449k | +1.45% |
| Saun & Starr | 120k | +2.74% |
| Menahan Street Band | 620k | +1.08% |
| Lee Fields & The Expressions | 321k | +1.05% |
| Darondo | 544k | +2.67% |
| Bill Withers | 2.8M | +1.91% |
| The Bamboos | 308k | +1.36% |
| The Olympians | 224k | +2.52% |
| Sam & Dave | 968k | +1.62% |
| Jalen Ngonda | 675k | +6.29% |
| The Budos Band | 401k | +0.86% |
| Cymande | 389k | +1.80% |
| The J.B.'s | 227k | +1.20% |
| Donny Hathaway | 1.2M | +1.43% |
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