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 Beach Boys | 4.2M | +1.45% |
| Brian Wilson | 372k | +0.77% |
| Colin Blunstone | 106k | +1.50% |
| Harry Nilsson | 1.2M | +1.58% |
| Todd Rundgren | 906k | +2.56% |
| Bee Gees | 3.6M | +2.56% |
| The Byrds | 1.6M | +0.62% |
| Wings | 1.4M | +1.69% |
| Linda McCartney | 45k | +3.48% |
| Paul & Linda McCartney | 131k | +0.55% |
| Ringo Starr | 719k | +0.93% |
| Big Star | 724k | +1.11% |
| George Harrison | 2.5M | +2.15% |
| Stephen Stills | 306k | +1.11% |
| Badfinger | 859k | +1.63% |
| Neil Young | 2.8M | +2.49% |
| Warren Zevon | 794k | +1.29% |
| Neil Young & Crazy Horse | 465k | +0.24% |
| Paul McCartney | 3.4M | +2.07% |
| John Lennon | 4.2M | +1.98% |
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