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 |
|---|---|---|
| Gerard Way | 522k | +3.57% |
| Pencey Prep | 97k | +2.75% |
| L.S. Dunes | 106k | +3.36% |
| My Chemical Romance | 5.0M | +1.91% |
| My Upside Down | 35k | — |
| The Used | 1.9M | +1.45% |
| DEATH SPELLS | 49k | — |
| Fall Out Boy | 5.2M | +1.75% |
| Panic! at the Disco | 4.6M | +2.47% |
| Andy Black | 229k | +2.97% |
| Pierce The Veil, Lindsey Stamey | 13k | +9.27% |
| Thursday | 790k | +1.44% |
| The Academy Is... | 956k | +1.21% |
| Anthony Green | 258k | +2.24% |
| A Heartwell Ending | 231k | +20.12% |
| Taking Back Sunday | 1.9M | +1.56% |
| Get Scared | 635k | +3.35% |
| MCCAFFERTY | 587k | +4.16% |
| Hawthorne Heights | 987k | +1.99% |
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