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 |
|---|---|---|
| Holywatr | 153k | +10.20% |
| Jutes | 314k | +0.29% |
| Moodring | 78k | +8.40% |
| Amira Elfeky | 375k | +0.31% |
| Maphra | 57k | +50.66% |
| President | 125k | +16.99% |
| Static Dress | 249k | +9.69% |
| Sleep Token | 888k | +0.20% |
| Thornhill | 249k | +7.17% |
| gore. | 42k | — |
| Sleep Theory | 220k | +11.40% |
| Vianova | 54k | +13.71% |
| Loathe | 918k | +5.87% |
| Levels | 32k | +6.55% |
| Invent Animate | 139k | +6.27% |
| Volumes | 213k | +1.86% |
| Bad Omens | 847k | +5.10% |
| Ezra | 52k | — |
| monotypes. | 53k | +21.11% |
| msliterate | 39k | — |
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