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 |
|---|---|---|
| 6LACK | 1.1M | +3.68% |
| Roy Woods | 667k | +2.44% |
| Tyla Yaweh | 376k | +0.97% |
| GASHI | 239k | +0.83% |
| THEY. | 307k | +1.86% |
| 070 Shake | 781k | +2.59% |
| Hippie Sabotage | 718k | +2.35% |
| Vory | 130k | +1.86% |
| Russ | 1.3M | +2.27% |
| Yung Bleu | 342k | +3.65% |
| mike. | 343k | +2.37% |
| NAV | 1.2M | +2.28% |
| G-Eazy | 2.2M | +4.00% |
| Tory Lanez | 2.1M | +3.85% |
| Vic Mensa | 456k | +0.97% |
| iann dior | 754k | +1.85% |
| Internet Money | 1.2M | +2.88% |
| Yung Pinch | 236k | +0.99% |
| Roddy Ricch | 1.6M | +3.56% |
| Migos | 1.9M | +2.92% |
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