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 ascIndexed to 100 at each series' first observation.
select
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 |
|---|---|---|
| Alabama | 592k | +2.08% |
| Lester Flatt & Earl Scruggs | 62k | +0.18% |
| Doc Watson | 252k | +2.55% |
| Doc & Merle Watson | 60k | +2.56% |
| Ricky Skaggs | 113k | +1.29% |
| John Hartford | 219k | +1.15% |
| Loretta Lynn | 461k | +1.46% |
| Rosanne Cash | 206k | +0.78% |
| Merle Haggard | 566k | +1.39% |
| Waylon Jennings | 734k | +1.77% |
| Guy Clark | 201k | +0.97% |
| Emmylou Harris | 634k | +1.14% |
| Dwight Yoakam | 382k | +2.72% |
| Steve Earle | 654k | +1.25% |
| John Anderson | 223k | +2.87% |
| Tony Rice | 72k | — |
| The Dillards | 70k | +4.20% |
| Shenandoah | 186k | +6.13% |
| Eddie Rabbitt | 240k | +3.99% |
| Merle Travis | 91k | +2.41% |
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