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 |
|---|---|---|
| Teethe | 288k | +2.40% |
| Greg Freeman | 115k | +10.64% |
| deathcrash | 59k | — |
| racecourse | 72k | +44.23% |
| MJ Lenderman | 390k | +3.70% |
| They Are Gutting a Body of Water | 310k | +3.20% |
| Dutch Interior | 156k | +6.08% |
| Acetone | 157k | +10.51% |
| Wednesday | 393k | +3.88% |
| Horse Jumper of Love | 486k | +5.31% |
| Bluetile Lounge | 50k | +4.03% |
| Colin Miller | 30k | +13.85% |
| Oldstar | 46k | +10.19% |
| Flooding | 167k | +11.36% |
| Florry | 46k | +2.98% |
| Bedhead | 220k | +2.45% |
| Frog | 198k | +6.07% |
| Codeine | 239k | +1.71% |
| 22º Halo | 83k | +5.28% |
| Alan Sparhawk | 45k | +1.58% |
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