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 |
|---|---|---|
| Eric Carmen | 831k | +3.00% |
| Bill Medley & Jennifer Warnes | 188k | +0.19% |
| Berlin | 1.2M | +2.76% |
| Joe Esposito | 56k | — |
| Glenn Medeiros | 163k | +2.36% |
| Alessi Brothers | 293k | +4.40% |
| Richard Marx | 807k | +1.74% |
| Paul Young | 631k | +1.19% |
| Peter Cetera | 399k | +1.78% |
| Mr. Mister | 738k | +1.11% |
| Kenny Loggins | 1.7M | +2.10% |
| Irene Cara | 900k | +2.16% |
| Starship | 1.4M | +2.65% |
| Cutting Crew | 1.4M | +5.91% |
| Air Supply | 994k | +1.83% |
| Jennifer Rush | 245k | +0.69% |
| Michael Sembello | 1.1M | +3.10% |
| Gerard McMann | 74k | — |
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