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 |
|---|---|---|
| Jack Kays | 226k | +1.88% |
| nothing,nowhere. | 384k | +1.69% |
| Max Bennett Kelly | 44k | — |
| SWMRS | 293k | — |
| Masterpeace | 903 | — |
| Hot Mulligan | 390k | +3.35% |
| EKKSTACY | 1.0M | +4.33% |
| Heart Attack Man | 137k | +2.13% |
| WSTR | 99k | — |
| Driveways | 74k | +2.62% |
| mgk | 1.1M | +5.25% |
| Sueco | 359k | +3.15% |
| Sincere Engineer | 73k | +4.46% |
| Moose Blood | 291k | +1.86% |
| Girlfriends | 437k | +6.52% |
| Hot Milk | 172k | +2.28% |
| Box Car Racer | 794k | +0.73% |
| Knuckle Puck | 221k | +2.84% |
| Magnolia Park | 272k | +4.67% |
| Motion City Soundtrack | 1.2M | +0.64% |
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