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 Lovin' Spoonful | 1.1M | +1.46% |
| Shocking Blue | 611k | +2.28% |
| The Monkees | 1.6M | +1.45% |
| The Mindbenders | 41k | — |
| Scott McKenzie | 571k | +0.97% |
| The Mamas & the Papas | 2.8M | +2.88% |
| The Box Tops | 595k | +0.82% |
| The Zombies | 1.8M | +2.31% |
| The Hollies | 1.7M | +2.45% |
| The Cowsills | 161k | +1.55% |
| Tommy James & The Shondells | 820k | +2.37% |
| Zombies | 90k | — |
| Wallace Collection | 78k | — |
| The Grass Roots | 334k | +1.94% |
| The Association | 412k | +1.39% |
| The Kingsmen | 470k | — |
| The Young Rascals | 341k | +3.47% |
| The Buckinghams | 78k | +0.88% |
| Herman's Hermits | 543k | +0.71% |
| Zager & Evans | 128k | — |
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