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 ascNo comparison cohort available for this artist yet — showing its own indexed series only.
Indexed 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 |
|---|---|---|
| Quando Rondo | 200k | +3.74% |
| YoungBoy Never Broke Again | 1.2M | +3.54% |
| 9lokknine | 162k | +3.29% |
| Speaker Knockerz | 330k | +4.32% |
| NoCap | 161k | +3.22% |
| Fredo Bang | 209k | +10.92% |
| SPOTEMGOTTEM | 212k | +2.32% |
| YNW Melly | 1.1M | +3.35% |
| Kodak Black | 1.9M | +3.75% |
| Pooh Shiesty | 515k | +4.69% |
| Lil Durk | 1.1M | +2.36% |
| Foolio | 134k | +3.62% |
| Lil Double 0 | 181k | +6.09% |
| Big Scarr | 200k | +4.17% |
| Dee Mula | 115k | +5.96% |
| VonOff1700 | 97k | +4.86% |
| Raq Baby | 58k | +11.69% |
| G Herbo | 584k | +0.11% |
| BloodHound Q50 | 100k | +7.20% |
| Polo G | 1.2M | +2.45% |
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