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 |
|---|---|---|
| Wendy | 282k | +2.85% |
| Red Velvet | 1.5M | +3.87% |
| Yeri | 67k | +1.83% |
| Red Velvet - IRENE & SEULGI | 521k | +2.13% |
| SEULGI | 494k | +2.32% |
| f(x) | 651k | +4.31% |
| GOT the beat | 378k | +2.10% |
| VIVIZ | 428k | +2.20% |
| Bad Boys Blue | 254k | +1.78% |
| RESCENE | 212k | +18.11% |
| SUNMI | 711k | +2.40% |
| C.C. Catch | 179k | +1.51% |
| fromis_9 | 611k | +4.63% |
| aespa | 1.4M | +6.10% |
| ifeye | 162k | +9.30% |
| NMIXX | 807k | +6.85% |
| 소녀시대 | 151k | +0.63% |
| Silent Circle | 109k | +2.13% |
| Yena | 569k | +11.09% |
| Loona | 1.2M | +2.97% |
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