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 |
|---|---|---|
| Austin Mahone | 536k | +3.81% |
| HRVY | 373k | +4.07% |
| Emblem3 | 116k | +1.60% |
| Jack & Jack | 281k | +1.77% |
| Boy in Space | 159k | +1.72% |
| Christian French | 283k | +1.90% |
| Charlie Puth | 2.6M | +3.91% |
| Christopher | 294k | — |
| MKTO | 1.2M | +2.91% |
| Nick Jonas | 1.4M | +2.94% |
| Joe Jonas | 357k | +2.05% |
| David Archuleta | 587k | +1.19% |
| Jesse McCartney | 995k | +1.09% |
| Cody Simpson | 495k | +2.74% |
| Quinn XCII | 469k | +1.35% |
| blackbear | 1.9M | +3.54% |
| Hoodie Allen | 586k | +0.90% |
| Greyson Chance | 371k | +1.24% |
| Sammy Adams | 178k | +1.33% |
| Daniel Seavey | 182k | +17.45% |
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