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 |
|---|---|---|
| Samurai Pizza Cats | 46k | — |
| Ghøstkid | 78k | — |
| Callejon | 81k | — |
| Crossfaith | 149k | — |
| Enter Shikari | 920k | +0.96% |
| Bury Tomorrow | 285k | +1.67% |
| Future Palace | 96k | +4.49% |
| Motionless in White | 956k | +4.92% |
| Scene Queen | 237k | +3.37% |
| Architects | 850k | +2.57% |
| Annisokay | 160k | +1.91% |
| Ice Nine Kills | 508k | +3.78% |
| HANABIE. | 110k | +4.13% |
| LANDMVRKS | 235k | +3.79% |
| I Prevail | 617k | +3.93% |
| Beartooth | 429k | +2.99% |
| While She Sleeps | 350k | +1.99% |
| Wage War | 340k | +3.04% |
| 花冷え。 | 103k | — |
| Bloody Woods | 2.1k | +0.23% |
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