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 |
|---|---|---|
| Johnny Lee | 90k | +6.19% |
| Johnny Rodriguez | 46k | +4.97% |
| Wynn Stewart | 36k | +2.61% |
| Moe Bandy | 57k | +2.77% |
| Eddy Arnold | 300k | +2.32% |
| Johnny Paycheck | 238k | +2.11% |
| Keith Whitley | 225k | +3.58% |
| Hank Williams Jr. | 188k | +0.24% |
| The Oak Ridge Boys | 113k | +2.61% |
| Tom T. Hall | 248k | +2.15% |
| Gary Stewart | 77k | +5.02% |
| Merle Haggard | 566k | +1.39% |
| Ray Price | 142k | +0.95% |
| David Allan Coe | 360k | +3.75% |
| Webb Pierce | 120k | +1.54% |
| Gene Watson | 53k | +2.71% |
| John Conlee | 65k | +4.42% |
| Conway Twitty | 415k | +2.01% |
| Bobby Bare | 164k | +1.21% |
| Bob Wills | 57k | +2.02% |
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