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 Runaways | 1.0M | +2.04% |
| Joan Jett | 397k | +0.93% |
| Pat Benatar | 1.5M | +2.10% |
| The Donnas | 466k | +0.75% |
| Suzi Quatro | 361k | +1.12% |
| Lita Ford | 329k | +1.16% |
| Queen & David Bowie | 362k | +0.29% |
| Blondie | 3.5M | +2.57% |
| Heart | 2.2M | +2.17% |
| Billy Squier | 635k | +2.58% |
| Def Leppard | 1.9M | +2.16% |
| Stevie Nicks | 1.6M | +3.59% |
| Journey | 3.4M | +2.40% |
| Poison | 1.2M | +2.07% |
| Queen | 7.4M | +1.49% |
| Loverboy | 701k | +1.90% |
| Cheap Trick | 1.4M | +1.43% |
| Billy Idol | 3.2M | +3.58% |
| The Go-Go's | 646k | +1.81% |
| REO Speedwagon | 1.3M | +1.79% |
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