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 |
|---|---|---|
| Bobby Vee | 343k | +1.04% |
| Ricky Nelson | 1.0M | +1.57% |
| The Drifters | 1.1M | +1.04% |
| The Platters | 1.1M | +1.68% |
| Neil Sedaka | 493k | +2.33% |
| The Righteous Brothers | 1.1M | +1.97% |
| Fats Domino | 736k | +0.85% |
| Buddy Holly | 1.4M | +0.79% |
| Pat Boone | 346k | +0.86% |
| Jerry Lee Lewis | 1.0M | +1.48% |
| Eddie Cochran | 618k | +0.59% |
| Bobby Vinton | 633k | +1.81% |
| Johnny Tillotson | 196k | +1.28% |
| Dion & The Belmonts | 508k | +2.15% |
| The Searchers | 387k | +0.82% |
| Gene Pitney | 207k | +0.47% |
| The Shirelles | 686k | +2.43% |
| Herman's Hermits | 542k | +0.67% |
| Buddy Holly & The Crickets | 199k | +0.61% |
| The Coasters | 608k | +1.00% |
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