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 |
|---|---|---|
| Jo Stafford | 422k | +1.77% |
| Rosemary Clooney | 630k | +0.49% |
| June Christy | 303k | +1.11% |
| Dick Haymes | 183k | — |
| Keely Smith | 144k | +0.46% |
| Kay Starr | 544k | +0.56% |
| Anne Shelton | 43k | +0.99% |
| Doris Day | 1.1M | +1.26% |
| Vaughn Monroe | 116k | +1.03% |
| Helen Merrill | 182k | +0.84% |
| Peggy Lee | 1.6M | +1.21% |
| Margaret Whiting | 197k | +2.03% |
| Anita O'Day | 495k | +1.29% |
| Julie London | 1.3M | +1.32% |
| Helen Forrest | 128k | +2.00% |
| Patti Page | 377k | +1.56% |
| Eddie Fisher | 99k | +0.85% |
| Johnny Mercer | 260k | +1.26% |
| Judy Garland | 960k | +1.01% |
| Eydie Gormé | 241k | +4.11% |
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