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 |
|---|---|---|
| Shooter Jennings | 163k | +0.61% |
| Scott H. Biram | 95k | — |
| Hank Williams Jr. | 188k | +0.24% |
| David Allan Coe | 360k | +3.75% |
| Whitey Morgan and the 78's | 59k | +2.41% |
| Waylon Jennings | 734k | +1.77% |
| Roger Alan Wade | 63k | +2.55% |
| Hank Williams | 950k | +1.13% |
| Johnny Paycheck | 238k | +2.11% |
| Billy Joe Shaver | 134k | +0.96% |
| Ray Wylie Hubbard | 91k | +1.31% |
| Merle Haggard | 566k | +1.39% |
| Sturgill Simpson | 383k | +2.40% |
| Wheeler Walker Jr. | 189k | +3.52% |
| Cody Jinks | 145k | +5.39% |
| George Jones | 501k | +1.16% |
| Jamey Johnson | 231k | +1.51% |
| Dwight Yoakam | 382k | +2.72% |
| The Devil Makes Three | 273k | +1.72% |
| Me and That Man | 90k | +1.00% |
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