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 |
|---|---|---|
| DOMi & JD Beck | 253k | +3.08% |
| Steve Lacy | 3.3M | +4.15% |
| Louis Cole | 209k | +1.64% |
| Anderson .Paak | 1.2M | +1.60% |
| Me'Shell Ndegéocello | 173k | +0.05% |
| The Internet | 1.2M | +2.27% |
| NxWorries | 547k | +1.18% |
| Jill Scott | 958k | +3.10% |
| Hiatus Kaiyote | 732k | +1.80% |
| Genesis Owusu | 348k | +12.63% |
| Flea | 223k | +7.28% |
| Sampha | 749k | +1.57% |
| Kamasi Washington | 410k | +1.27% |
| Erykah Badu | 2.1M | +2.22% |
| Nubiyan Twist | 122k | +4.61% |
| Jamiroquai | 3.0M | +2.61% |
| OutKast | 5.1M | +2.17% |
| Phony Ppl | 376k | +1.46% |
| BADBADNOTGOOD | 1.2M | +3.23% |
| Free Nationals | 1.0M | +2.67% |
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