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 |
|---|---|---|
| The Internet | 1.2M | +2.27% |
| Thundercat | 2.1M | +2.89% |
| Blue Iverson | 316k | +2.23% |
| Frank Ocean | 4.4M | +2.40% |
| Matt Martians | 399k | +28.20% |
| Brent Faiyaz | 2.1M | +3.32% |
| Fousheé | 448k | +5.20% |
| Syd | 370k | +6.13% |
| Daniel Caesar | 2.5M | +4.28% |
| Ravyn Lenae | 1.9M | +7.95% |
| Sonder | 1.1M | +5.07% |
| Jordan Ward | 502k | +3.39% |
| Solange | 1.7M | +2.97% |
| Miguel | 2.8M | +3.38% |
| Erykah Badu | 2.1M | +2.22% |
| Smino | 872k | +1.86% |
| Cosmo Pyke | 314k | +1.41% |
| bLAck pARty | 462k | +1.08% |
| SZA | 3.6M | +2.78% |
| Rex Orange County | 2.1M | +2.47% |
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