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 |
|---|---|---|
| Trippie Redd | 2.0M | +3.49% |
| Concrete Boys | 196k | +4.46% |
| Gunna | 1.9M | +3.29% |
| Young Nudy | 1.1M | +3.06% |
| Lil Tecca | 1.8M | +3.14% |
| Lil Keed | 386k | +3.78% |
| Baby Keem | 2.1M | +3.36% |
| 21 Savage | 2.4M | +2.72% |
| Young Thug | 1.9M | +3.08% |
| Future | 3.3M | +2.88% |
| Jaden | 1.2M | +1.45% |
| Lil Uzi Vert | 2.9M | +3.12% |
| Cochise | 1.0M | +2.85% |
| Travi$ Scott | 188k | +0.29% |
| Kodak Black | 1.9M | +3.75% |
| Pi’erre Bourne | 717k | +3.09% |
| Ski Mask the Slump God | 1.3M | +1.73% |
| Migos | 1.9M | +3.06% |
| Playboi Carti | 2.6M | +2.89% |
| 21 Savage & Metro Boomin | 78k | +1.59% |
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