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 |
|---|---|---|
| Vine | 6.4k | — |
| Phase | 31k | — |
| Worthikids | 114k | +2.33% |
| King Gizzard & The Lizard Wizard | 917k | +0.42% |
| Fever The Ghost | 164k | +2.04% |
| Pond | 618k | +1.89% |
| Abandoned Pools | 150k | +6.93% |
| Tally Hall | 1.2M | +3.09% |
| That Handsome Devil | 408k | +21.00% |
| Weezer | 5.6M | +2.35% |
| Ken Ashcorp | 305k | +5.76% |
| junodream | 210k | — |
| Meltt | 279k | +6.76% |
| Mustard Service | 296k | +3.55% |
| They Might Be Giants | 1.3M | +1.84% |
| CRX | 129k | +2.00% |
| Harvey Danger | 709k | +2.29% |
| I DONT KNOW HOW BUT THEY FOUND ME | 899k | +2.59% |
| Evan Fong | 73k | +22.58% |
| Shiver | 16k | — |
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