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 |
|---|---|---|
| The Growlers | 856k | +1.55% |
| sadgirl | 126k | +1.25% |
| Jurassic Shark | 64k | +2.61% |
| Buttertones | 11k | +0.76% |
| Hot Flash Heat Wave | 350k | +2.63% |
| The Frights | 440k | +1.93% |
| The Pesos | 50k | +4.21% |
| Tijuana Panthers | 124k | +1.18% |
| Benches | 241k | +6.29% |
| Vundabar | 1.4M | +2.81% |
| Balkans | 103k | +1.76% |
| Trudy and the Romance | 175k | +0.91% |
| Mexican Slum Rats | 141k | +3.08% |
| Jaded Juice Riders | 83k | +2.72% |
| The Drums | 2.2M | +2.36% |
| Boyscott | 391k | +1.55% |
| Surf Curse | 2.1M | +3.63% |
| Couch Dog | 68k | +8.78% |
| Summer Salt | 462k | +1.56% |
| Triathalon | 310k | +2.10% |
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