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 |
|---|---|---|
| Frog | 198k | +6.07% |
| Greg Freeman | 115k | +10.64% |
| Fat, Evil Children | 71k | +16.23% |
| Desertshore | 64k | — |
| 22º Halo | 83k | +5.28% |
| racecourse | 72k | +44.23% |
| Colin Miller | 30k | +13.85% |
| Divorce | 56k | — |
| Florry | 46k | +2.98% |
| villagerrr | 87k | +17.42% |
| MJ Lenderman | 390k | +3.70% |
| Shallowater | 76k | +4.71% |
| Westside Cowboy | 106k | +32.43% |
| Greg Mendez | 128k | +5.33% |
| Swapmeet | 75k | +72.02% |
| Lily Seabird | 13k | +12.87% |
| Truth Club | 68k | — |
| Sluice | 33k | +7.40% |
| Hovvdy | 326k | +2.46% |
| deathcrash | 59k | — |
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