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 |
|---|---|---|
| Kevin Walkman | 170k | +3.98% |
| adan diaz | 172k | +1.82% |
| A-wall | 583k | +5.08% |
| Tommy Newport | 243k | +2.19% |
| The Happy Fits | 439k | +2.52% |
| Still Woozy | 1.2M | +1.68% |
| Binki | 359k | +3.44% |
| Almost Monday | 459k | +9.99% |
| Dayglow | 1.5M | +2.92% |
| Mickey Darling | 185k | +3.58% |
| Between Friends | 913k | +3.82% |
| Yot Club | 1.6M | +3.23% |
| Saint Motel | 1.3M | +3.24% |
| Ax and the Hatchetmen | 342k | +0.74% |
| Mazie | 427k | +2.97% |
| spill tab | 368k | +3.26% |
| Rec Hall | 133k | +7.75% |
| Wallows | 2.2M | +3.04% |
| Austenyo | 110k | +2.87% |
| BBY | 127k | +3.01% |
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