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 |
|---|---|---|
| John Travolta | 1.1M | +1.95% |
| James Getzoff | 61k | +2.06% |
| Louis St. Louis | 52k | +1.29% |
| Stockard Channing | 218k | +2.14% |
| John Travolta & Olivia Newton-John | 130k | +0.43% |
| James Marsden | 164k | — |
| Tim Curry | 278k | +2.78% |
| Amanda Seyfried | 675k | +3.27% |
| Richard O'Brien | 277k | +1.37% |
| Nicole Kidman | 260k | — |
| Nikki Blonsky | 268k | +2.64% |
| Meryl Streep | 929k | +6.35% |
| Renée Zellweger | 148k | — |
| Christine Baranski | 443k | +4.26% |
| Zac Efron | 922k | +3.79% |
| Michelle Pfeiffer | 139k | — |
| Julie Andrews | 556k | +1.96% |
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