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 ascIndexed to 100 at each series' first observation.
select
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 |
|---|---|---|
| Vince Gill | 249k | +2.07% |
| Brooks & Dunn | 987k | +3.28% |
| Eric Church | 793k | +1.92% |
| Jamey Johnson | 231k | +1.51% |
| Brad Paisley | 1.1M | +0.89% |
| Justin Moore | 426k | +0.82% |
| George Strait | 985k | +2.27% |
| Martina McBride | 580k | +0.80% |
| Toby Keith | 1.1M | +2.87% |
| Jake Owen | 655k | +0.85% |
| Alan Jackson | 1.1M | +1.95% |
| Lee Ann Womack | 379k | +1.07% |
| Tracy Lawrence | 353k | +3.39% |
| Gary Allan | 500k | +0.81% |
| Blake Shelton | 1.1M | +1.14% |
| Wade Bowen | 59k | — |
| Chris Cagle | 405k | +0.31% |
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