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 |
|---|---|---|
| Balu Brigada | 600k | +11.19% |
| half•alive | 654k | +1.87% |
| YUNGBLUD | 1.2M | +3.61% |
| Glass Animals | 2.7M | +3.78% |
| James Marriott | 181k | +3.60% |
| Imagine Dragons | 4.2M | +1.96% |
| Temper City | 532k | +1.42% |
| Mutemath | 484k | +0.86% |
| Oliver Tree | 1.7M | +12.74% |
| Gorillaz | 7.0M | +1.64% |
| Panic! at the Disco | 4.6M | +2.47% |
| AJR | 1.3M | +2.27% |
| I DONT KNOW HOW BUT THEY FOUND ME | 899k | +2.59% |
| The Neighbourhood | 4.1M | +2.99% |
| Wallows | 2.2M | +3.04% |
| Foster the People | 3.8M | +2.08% |
| Dayglow | 1.5M | +2.92% |
| My Chemical Romance | 5.0M | +1.91% |
| Gerard Way | 522k | +3.57% |
| Bastille | 2.5M | +2.10% |
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