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 ascIndexed to 100 at each series' first observation.
select
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 |
|---|---|---|
| Yellow Magic Orchestra | 350k | +2.44% |
| 高橋幸宏 | 16k | +0.96% |
| Alva Noto + Ryuichi Sakamoto | 526 | +9.58% |
| 細野晴臣 | 37k | +1.60% |
| Fennesz + Sakamoto | 19k | +16037.82% |
| Haruomi Hosono | 377k | +2.16% |
| Sketch Show | 43k | +0.55% |
| 高木正勝 | 69k | — |
| 矢野顕子 | 30k | +1.01% |
| Yasuaki Shimizu | 201k | +1.83% |
| Isao Tomita | 110k | +0.72% |
| Rei Harakami | 242k | +1.83% |
| Daniel Lopatin | 124k | +3.76% |
| Masakatsu Takagi | 234k | +6.83% |
| Hiroshi Yoshimura | 267k | +3.82% |
| Yumiko Morioka | 38k | +3.31% |
| The Beatniks | 33k | +0.56% |
| David Sylvian | 375k | +0.79% |
| GONTITI | 30k | — |
| Takumi Kaneko | 78k | +2.72% |
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