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 |
|---|---|---|
| Kill Paradise | 137k | +1.27% |
| Cash Cash | 888k | +1.79% |
| The Ready Set | 444k | +1.86% |
| Hellogoodbye | 1.1M | +0.47% |
| Breathe Electric | 161k | +0.70% |
| The Medic Droid | 188k | +0.92% |
| 3OH!3 | 2.0M | +3.38% |
| Forever the Sickest Kids | 793k | +0.66% |
| Never Shout Never | 528k | +3.40% |
| Brokencyde | 448k | +4.23% |
| Metro Station | 1.4M | +3.86% |
| Attack Attack! | 466k | +2.62% |
| I See Stars | 394k | +1.84% |
| Ghost Town | 220k | +4.11% |
| Blood on the Dance Floor | 71k | +1.40% |
| A Skylit Drive | 531k | +1.63% |
| Jeffree Star | 297k | +0.37% |
| Alesana | 739k | +2.20% |
| I Set My Friends on Fire | 304k | +3.56% |
| Millionaires | 402k | +5.39% |
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