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 |
|---|---|---|
| Johnnie Ray | 126k | +1.12% |
| Slim Whitman | 78k | +1.25% |
| Eddie Fisher | 99k | +0.85% |
| Al Martino | 243k | +1.15% |
| Pat Boone | 347k | +0.88% |
| The Four Lads | 65k | — |
| The Four Aces | 94k | — |
| Guy Mitchell | 234k | +2.32% |
| Lorne Greene | 36k | +4.39% |
| Teresa Brewer | 83k | — |
| Jimmie Rodgers | 246k | +1.43% |
| Patti Page | 377k | +1.56% |
| Tennessee Ernie Ford | 424k | +3.08% |
| Don Williams | 236k | +3.28% |
| Marty Robbins | 890k | +2.59% |
| Vaughn Monroe | 116k | +1.03% |
| Perry Como | 1.6M | +0.51% |
| The Platters | 1.1M | +1.74% |
| Kay Starr | 544k | +0.56% |
| Bill Haley & His Comets | 367k | +1.55% |
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