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 |
|---|---|---|
| RRoxket | 77k | +5.18% |
| Maxon | 103k | +9.08% |
| 19thou | 53k | +9.63% |
| Diamond D | 113k | +0.54% |
| 1300SAINT | 51k | +19.40% |
| PROTECT | 170k | +11.96% |
| echstacy | 136k | +15.06% |
| Glo | 75k | +6.32% |
| Playboi Carti & Lil Uzi Vert | 19k | +3.95% |
| Young Nudy & Pi’erre Bourne | 5.6k | +3.16% |
| Young Thug | 1.9M | +3.08% |
| Pi'erre Bourne | 54k | +2.14% |
| UnoTheActivist | 432k | +2.60% |
| Zukenee | 73k | +14.01% |
| Lil Keed | 386k | +3.78% |
| Lil Uzi Vert & 21 Savage | 25k | +1.30% |
| Xanman | 99k | +6.57% |
| yvngxchris | 218k | +3.13% |
| Diamond* | 80k | +67.94% |
| Chavo | 317k | +3.64% |
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