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 |
|---|---|---|
| Neil Frances | 605k | +2.50% |
| Tim Atlas | 416k | +1.10% |
| FKJ | 849k | +2.19% |
| Poolside | 519k | +1.62% |
| Electric Guest | 742k | +1.07% |
| Magic City Hippies | 329k | +1.58% |
| slenderbodies | 245k | +1.57% |
| Cannons | 579k | +7.34% |
| The Parcels | 3.4k | +0.32% |
| Bay Ledges | 225k | +2.77% |
| Zimmer90 | 207k | +5.67% |
| Biig Piig | 486k | +1.41% |
| The Brook & The Bluff | 179k | +1.61% |
| Far Caspian | 368k | +2.59% |
| Miami Horror | 799k | +1.13% |
| Tommy Newport | 243k | +2.13% |
| Tender | 266k | +1.93% |
| The Undercover Dream Lovers | 196k | +1.41% |
| Goth Babe | 570k | +1.98% |
| strongboi | 212k | +6.37% |
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