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 |
|---|---|---|
| Sick Hack | 24k | — |
| TOGENASHI TOGEARI | 41k | +9.47% |
| the peggies | 228k | +3.39% |
| ASIAN KUNG-FU GENERATION | 732k | +2.82% |
| 涼宮ハルヒ (CV.平野 綾) | 59k | +7.75% |
| Tuyu | 186k | +4.30% |
| Sayuri | 185k | +5.16% |
| Necry Talkie | 14k | +5.37% |
| Yorushika | 310k | +0.23% |
| ZUTOMAYO | 365k | +0.18% |
| Mai Sakurajima(CV:Asami Seto) | 101k | +11.32% |
| Ryokuoushoku Shakai | 217k | +7.50% |
| Kisida Kyodan & The Akebosi Rockets | 65k | +3.80% |
| B小町 | 66k | +12.16% |
| 鈴木このみ | 35k | +2.84% |
| 結束バンド | 172k | +3.86% |
| inabakumori | 304k | +0.28% |
| KANA-BOON | 566k | +4.04% |
| Sakurakou K-ON Bu | 100k | +6.24% |
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