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 |
|---|---|---|
| James Blake | 2.0M | +1.71% |
| NxWorries | 547k | +1.18% |
| Smino | 872k | +1.86% |
| Anderson .Paak | 1.2M | +1.60% |
| Dijon | 853k | +3.52% |
| Mustafa | 166k | +1.84% |
| Frank Ocean | 4.4M | +2.40% |
| SBTRKT & Sampha | 7.0k | +1.85% |
| Lianne La Havas | 754k | +1.16% |
| SBTRKT | 912k | +0.64% |
| D'Angelo | 1.3M | +1.94% |
| Nourished by Time | 222k | +4.28% |
| Mk.gee | 741k | +3.10% |
| Jamila Woods | 217k | +0.68% |
| Thundercat | 2.1M | +2.89% |
| SiR | 831k | +2.44% |
| Moses Sumney | 636k | +1.02% |
| KAYTRANADA | 1.6M | +3.11% |
| Cleo Sol | 685k | +4.31% |
| Brent Faiyaz | 2.1M | +3.32% |
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