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 |
|---|---|---|
| Black Box Recorder | 821k | +5.23% |
| Radiohead | 8.4M | +1.67% |
| The Cardigans | 3.8M | +3.08% |
| The Sundays | 1.4M | +5.45% |
| MASS OF THE FERMENTING DREGS | 566k | +8.44% |
| MONORAL | 107k | — |
| The Cranberries | 4.9M | +2.23% |
| Mitski | 3.4M | +3.18% |
| Jack Off Jill | 571k | +3.23% |
| Weezer | 5.6M | +2.35% |
| Garbage | 2.3M | +1.24% |
| Splendora | 67k | — |
| Pixies | 4.4M | +1.66% |
| Elysian Fields | 253k | +5.83% |
| Placebo | 3.4M | +0.62% |
| The Breeders | 1.2M | +1.69% |
| Queen Adreena | 104k | — |
| Abandoned Pools | 150k | +6.93% |
| Flyleaf | 2.0M | +2.72% |
| Jeff Buckley | 3.5M | +3.33% |
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