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 |
|---|---|---|
| Concrete Boys | 196k | +4.46% |
| wolfacejoeyy | 102k | +2.63% |
| tobi lou | 641k | +0.79% |
| Smino | 872k | +1.86% |
| Tom the Mail Man | 240k | +1.27% |
| Skyte | 85k | +17.69% |
| kanii | 759k | +3.76% |
| BNYX® | 259k | +21.04% |
| Ryan Trey | 209k | +1.81% |
| Kenny Mason | 345k | +13.08% |
| Blxst | 453k | +3.00% |
| Jaden | 1.2M | +1.45% |
| Ag Club | 259k | +2.48% |
| Chase Shakur | 393k | +2.21% |
| Capzlock | 186k | +3.66% |
| SAINt JHN | 999k | +1.89% |
| Lil Tecca | 1.8M | +3.14% |
| GoldLink | 1.3M | +2.71% |
| Westwood | 114k | +30.61% |
| Groovy | 290k | +7.70% |
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