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 |
|---|---|---|
| Cody Jinks | 145k | +5.39% |
| Aaron Lewis | 194k | +2.45% |
| Hank Williams Jr. | 188k | +0.24% |
| Eric Church | 793k | +1.92% |
| Kenny Chesney | 1.2M | +1.43% |
| Justin Moore | 426k | +0.82% |
| Whitey Morgan and the 78's | 59k | +2.41% |
| Shooter Jennings | 163k | +0.61% |
| John Anderson | 223k | +2.87% |
| Tracy Lawrence | 353k | +3.39% |
| Travis Tritt | 438k | +1.75% |
| Alan Jackson | 1.1M | +1.95% |
| Toby Keith | 1.1M | +2.87% |
| Cody Johnson | 289k | +5.76% |
| Ronnie Dunn | 91k | +0.67% |
| Zac Brown Band | 1.1M | +2.14% |
| Turnpike Troubadours | 148k | +4.33% |
| George Strait | 985k | +2.27% |
| Brad Paisley | 1.1M | +0.89% |
| Waylon Jennings | 734k | +1.77% |
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