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 |
|---|---|---|
| Kaede | 275k | +2.57% |
| Minuano | 253k | +5.74% |
| mamerico | 148k | +4.12% |
| Asagaya Romantics | 112k | +4.78% |
| 小野リサ | 54k | +0.88% |
| Mei Ehara | 236k | +5.01% |
| SATELLITE LOVERS | 73k | +13.12% |
| pitcher56 | 209k | +6.91% |
| フレネシ | 265k | +4.29% |
| pomodorosa | 91k | +11.69% |
| Serani Poji | 383k | +6.61% |
| Takeshi Nakatsuka | 69k | +11.43% |
| Liana Flores | 1.3M | +0.20% |
| Frenesi | 4.8k | +4.05% |
| CITROBAL | 82k | +8.00% |
| Miharu Koshi | 117k | — |
| Dahlia | 65k | +8.91% |
| Paris Match | 74k | +5.39% |
| Blu-Swing | 127k | +6.07% |
| ROUND TABLE featuring Nino | 203k | +5.87% |
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