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 ascselect
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 |
|---|---|---|
| Van der Graaf Generator | 295k | +0.72% |
| Gentle Giant | 437k | +1.17% |
| King Crimson | 1.3M | +2.16% |
| The Nice | 115k | +0.38% |
| Camel | 601k | +1.84% |
| Yes | 2.0M | +1.95% |
| UK | 57k | +0.23% |
| Genesis | 2.1M | +1.55% |
| Keith Emerson | 84k | +0.43% |
| Jethro Tull | 1.5M | +0.69% |
| Procol Harum | 817k | +0.85% |
| The Moody Blues | 1.2M | +1.13% |
| Asia | 821k | +2.02% |
| Focus | 504k | +1.07% |
| Caravan | 291k | +0.90% |
| Emerson, Lake & Powell | 25k | +0.91% |
| Renaissance | 210k | +1.22% |
| Steve Hackett | 223k | +0.56% |
| Rick Wakeman | 230k | +0.61% |
| Chris Squire | 71k | +6.54% |
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