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 |
|---|---|---|
| 東京事変 | 113k | +0.59% |
| Fishmans | 496k | +3.19% |
| Midori | 71k | +4.04% |
| 0.8秒と衝撃。 | 8.1k | — |
| Hakushi Hasegawa | 186k | +3.34% |
| 惑星アブノーマル | 5.4k | — |
| Doopees | 109k | +3.34% |
| Shinsei Kamattechan | 428k | +4.96% |
| 神聖かまってちゃん | 36k | +1.80% |
| ATARASHII GAKKO! | 386k | +4.11% |
| ミドリ | 272k | +4.07% |
| 小島麻由美 | 22k | +0.75% |
| 青葉市子 | 29k | — |
| ACO | 47k | — |
| 相対性理論 | 54k | +1.21% |
| 倉橋ヨエコ | 9.3k | +3.09% |
| Hikaru Utada | 642k | +0.19% |
| 宇多田ヒカル | 325k | +0.54% |
| SOIL&“PIMP”SESSIONS | 6.0k | +1.26% |
| 佐井好子 | 74k | — |
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