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 |
|---|---|---|
| Black Pistol Fire | 255k | +1.27% |
| The Strypes | 148k | — |
| She Keeps Bees | 107k | — |
| Birth of Joy | 29k | — |
| Hanni El Khatib | 237k | +0.56% |
| Black River Delta | 20k | — |
| The Heavy | 877k | +1.78% |
| Little Hurricane | 101k | — |
| The Parlor Mob | 118k | +1.32% |
| Reignwolf | 291k | +1.66% |
| Ron Gallo | 235k | — |
| Mando Diao | 1.1M | +0.72% |
| The Blue Stones | 263k | +2.57% |
| The Reytons | 220k | +2.14% |
| Blood Red Shoes | 759k | +0.76% |
| The Wanton Bishops | 69k | — |
| Cam Cole | 87k | — |
| The Delta Saints | 45k | — |
| Brothers Moving | 56k | — |
| Steaming Satellites | 54k | — |
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