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 |
|---|---|---|
| Shigeru Suzuki | 217k | +5.16% |
| VARRA | 99k | — |
| Angel 'Pocho' Gatti Orchestra | 55k | +7.85% |
| 菊池ひみこ | 59k | — |
| Cortex | 791k | +3.94% |
| Naniwa Express | 49k | +8.71% |
| Shigeo Sekito | 176k | +9.89% |
| Chihiro Yamanaka | 126k | +8.83% |
| 稲垣次郎とソウル・メディア | 163k | +3.76% |
| Jun Fukamachi | 78k | +4.50% |
| Jiro Inagaki and His Soul Media | 176k | +5.08% |
| Oliver Crosby | 77k | — |
| O'Donel Levy | 202k | +4.40% |
| 高中正義 | 26k | +6.41% |
| The Brothers Nylon | 183k | — |
| Yuji Ohno | 114k | +7.28% |
| Casiopea | 457k | +3.93% |
| セキトオ・シゲオ | 274k | +0.04% |
| Takeshi Nakatsuka | 69k | +11.43% |
| Agustin Pereyra Lucena | 161k | +7.16% |
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