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 |
|---|---|---|
| Landon Tewers | 89k | — |
| Bad Omens | 847k | +5.10% |
| Bring Me the Horizon | 2.9M | +2.35% |
| Currents | 286k | +3.03% |
| Imminence | 223k | +6.82% |
| The Devil Wears Prada | 905k | +1.15% |
| Motionless in White | 956k | +4.92% |
| Thousand Below | 116k | +3.79% |
| Wage War | 340k | +3.04% |
| Dayseeker | 290k | +5.66% |
| Spiritbox | 595k | +5.76% |
| Fit For A King | 264k | +3.05% |
| Kingdom of Giants | 134k | +3.47% |
| Opal In Sky | 38k | — |
| Architects | 850k | +2.57% |
| Maphra | 57k | +50.66% |
| LANDMVRKS | 235k | +3.79% |
| Like Moths to Flames | 221k | +3.68% |
| President | 125k | +16.99% |
| Silent Planet | 183k | +4.61% |
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