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 |
|---|---|---|
| Teto | 297k | +3.13% |
| Leviano | 96k | +7.67% |
| Japa | 91k | +3.19% |
| Aka Rasta | 129k | +2.59% |
| WIU | 288k | +2.89% |
| Yunk Vino | 191k | +3.32% |
| Matuê | 450k | +3.10% |
| Jé | 63k | +4.54% |
| Recayd Mob | 167k | +3.51% |
| Franco, The Sir! | 50k | +12.36% |
| Nana | 230k | — |
| Sidoka | 194k | +1.93% |
| Alee | 147k | +5.75% |
| DooDe | 120k | +3.48% |
| abbot | 179k | +3.64% |
| Derek | 181k | +3.20% |
| Meno Tody | 49k | +2.08% |
| Leozin | 78k | +2.38% |
| Dfideliz | 135k | +3.50% |
| On the Radar | 168k | +13.23% |
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