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 |
|---|---|---|
| Stratovarius | 650k | +1.00% |
| Kamelot | 557k | +0.57% |
| Avantasia | 488k | +0.60% |
| Edguy | 427k | +0.36% |
| Cain's Offering | 65k | +0.70% |
| Rhapsody | 460k | +0.90% |
| DragonForce | 1.2M | +1.23% |
| HammerFall | 717k | +0.47% |
| Northern Kings | 122k | +0.24% |
| Rhapsody of Fire | 288k | +0.85% |
| Masterplan | 209k | +0.70% |
| Freedom Call | 194k | +0.38% |
| Helloween | 920k | +0.89% |
| Dark Moor | 213k | +0.39% |
| Gamma Ray | 381k | +0.33% |
| Dragonland | 167k | +0.46% |
| Blind Guardian | 864k | +0.50% |
| Nightwish | 1.8M | +0.70% |
| Twilight Force | 63k | +2.35% |
| Angra | 459k | +2.09% |
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