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 |
|---|---|---|
| Frightened Rabbit | 729k | +0.42% |
| Augustines | 92k | +1.09% |
| MasterSystem | 17k | +0.95% |
| We Were Promised Jetpacks | 390k | +1.02% |
| There Will Be Fireworks | 59k | +1.39% |
| The Twilight Sad | 378k | +2.14% |
| Admiral Fallow | 91k | +0.33% |
| Manchester Orchestra | 1.5M | +1.52% |
| Idlewild | 393k | +0.41% |
| The National | 2.5M | +0.63% |
| EL VY | 152k | +0.56% |
| Matt Berninger | 204k | +3.03% |
| Arab Strap | 316k | +0.78% |
| Rogue Wave | 941k | +0.38% |
| The Airborne Toxic Event | 600k | +0.70% |
| The Boxer Rebellion | 387k | +0.71% |
| Editors | 2.0M | +0.58% |
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