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 |
|---|---|---|
| Shanti Dope | 88k | +8.86% |
| Kristina Dawn | 67k | +9.35% |
| Hev Abi | 98k | +0.55% |
| Because | 89k | +7.19% |
| Ex Battalion | 66k | +9.89% |
| Skusta Clee | 93k | +14.64% |
| PDL | 94k | +8.56% |
| Cean Jr. | 93k | +6.87% |
| Al James | 95k | +7.26% |
| O.C. Dawgs | 50k | +11.82% |
| Janine Berdin | 93k | +1.46% |
| Denise Julia | 224k | +6.34% |
| Bosx1ne | 56k | +10.71% |
| December Avenue | 128k | +6.96% |
| Silent Sanctuary | 130k | +6.51% |
| MRLD | 180k | +5.54% |
| Arthur Nery | 148k | +6.99% |
| Dionela | 99k | +5.37% |
| Jireh Lim | 65k | +11.42% |
| Yeng Constantino | 96k | +7.88% |
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