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 |
|---|---|---|
| Stonewall Jackson | 82k | +1.49% |
| The Delmore Brothers | 47k | +3.41% |
| Commander Cody And His Lost Planet Airmen | 37k | +2.61% |
| Hank Thompson | 124k | +1.66% |
| Hank Williams | 950k | +1.13% |
| Webb Pierce | 120k | +1.54% |
| Faron Young | 145k | +0.85% |
| Tex Ritter | 61k | +1.96% |
| Lefty Frizzell | 140k | +1.22% |
| Red Foley | 71k | +1.72% |
| Buck Owens | 538k | +12.50% |
| Johnny Paycheck | 238k | +2.11% |
| Eddy Arnold | 300k | +2.32% |
| Merle Travis | 91k | +2.41% |
| Hank Snow | 122k | +0.68% |
| Billy Walker | 85k | +7.39% |
| Ray Price | 142k | +0.95% |
| Del Reeves | 41k | +2.04% |
| Marty Robbins | 890k | +2.59% |
| Elton Britt | 133k | +4.78% |
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