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 |
|---|---|---|
| Daron Malakian and Scars on Broadway | 232k | +2.84% |
| System of a Down | 5.9M | +1.50% |
| Scars on Broadway | 493k | +0.05% |
| Viza | 52k | +2.48% |
| Stone Sour | 2.1M | +1.09% |
| Manapart | 22k | +11.91% |
| Korn | 3.5M | +1.95% |
| Corey Taylor | 349k | +1.52% |
| Hypnogaja | 133k | +1.20% |
| Slipknot | 4.3M | +1.74% |
| Drowning Pool | 2.2M | +2.40% |
| Seether | 2.5M | +1.87% |
| 10 Years | 829k | +1.28% |
| Chevelle | 1.9M | +4.29% |
| Rage Against the Machine | 4.3M | +1.20% |
| Jonathan Davis | 202k | +0.47% |
| Faith No More | 1.8M | +0.94% |
| Disturbed | 3.6M | +1.16% |
| Muse | 6.5M | +1.68% |
| Mudvayne | 1.6M | +0.95% |
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