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 |
|---|---|---|
| 8 Graves | 111k | +2.08% |
| grandson | 864k | +2.68% |
| The Unlikely Candidates | 246k | +1.50% |
| Bohnes | 269k | +3.66% |
| Bryce Fox | 249k | +1.58% |
| Arrested Youth | 242k | +1.91% |
| The People's Thieves | 36k | +5.41% |
| Foreign Air | 285k | +1.30% |
| Des Rocs | 304k | +2.79% |
| Friday Pilots Club | 283k | +3.76% |
| Dreamers | 379k | +1.16% |
| Badflower | 300k | +1.72% |
| Foreign Figures | 60k | +2.93% |
| DEAD POET SOCIETY | 292k | +5.49% |
| Airways | 156k | +1.92% |
| UNSECRET | 132k | +2.25% |
| Saint PHNX | 119k | +0.89% |
| Jaymes Young | 1.1M | +2.44% |
| Palaye Royale | 525k | +2.08% |
| Betcha | 155k | +4.53% |
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