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 |
|---|---|---|
| Del Reeves | 41k | +2.04% |
| Dwight Yoakam | 382k | +2.72% |
| Asleep at the Wheel | 100k | +1.30% |
| Marty Stuart | 81k | +1.26% |
| Commander Cody And His Lost Planet Airmen | 37k | +2.61% |
| Lefty Frizzell | 140k | +1.22% |
| Red Simpson | 27k | +3.36% |
| Dale Watson | 69k | +0.49% |
| Jerry Reed | 332k | +2.19% |
| Mark Chesnutt | 218k | +1.60% |
| Robert Earl Keen | 144k | +1.07% |
| Webb Pierce | 120k | +1.54% |
| Merle Haggard | 566k | +1.39% |
| Danny Gatton | 29k | — |
| Ray Wylie Hubbard | 91k | +1.31% |
| Gene Watson | 53k | +2.71% |
| Stonewall Jackson | 82k | +1.49% |
| Billy Joe Shaver | 134k | +0.96% |
| Southern Culture On The Skids | 123k | +0.89% |
| Bobby Bare | 164k | +1.21% |
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