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 |
|---|---|---|
| The Rare Occasions | 1.3M | +6.97% |
| The Walters | 1.9M | +3.41% |
| Ricky Montgomery | 1.4M | +3.69% |
| Good Kid | 640k | +5.86% |
| juju<3 | 729k | +4.76% |
| Phoneboy | 164k | +4.69% |
| Cafuné | 1.6M | +5.53% |
| yung kai | 458k | +6.46% |
| Temper City | 532k | +1.42% |
| Noah Floersch | 246k | +6.07% |
| Keanu Bicol | 144k | +3.21% |
| Beach Weather | 1.5M | +5.43% |
| VACATIONS | 2.0M | +3.78% |
| yungatita | 418k | +7.84% |
| The Happy Fits | 439k | +2.52% |
| Kevin Walkman | 170k | +3.98% |
| Zach Templar | 383k | +8.93% |
| Surf Curse | 2.1M | +3.83% |
| wave to earth | 912k | +6.42% |
| Neon Trees | 2.2M | +2.63% |
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