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 |
|---|---|---|
| VS Self | 235k | +4.46% |
| Computer | 115k | +12.37% |
| Merchant Ships | 302k | +4.92% |
| Marietta | 358k | +4.81% |
| Midwest Pen Pals | 117k | +4.25% |
| Train Breaks Down | 149k | +10.60% |
| Pennines | 144k | +8.47% |
| seahorsechoke | 68k | +8.69% |
| Camping in Alaska | 140k | +6.83% |
| American Football | 1.2M | +3.37% |
| leverfall | 230k | +12.64% |
| Odd Sweetheart | 289k | +4.13% |
| Empty Parking Lot | 84k | +12.08% |
| Modern Baseball | 974k | +3.66% |
| Panucci's Pizza | 298k | +4.83% |
| trsh | 146k | +4.96% |
| sports. | 163k | +3.55% |
| Your Arms Are My Cocoon | 246k | +9.73% |
| Free Throw | 382k | +4.63% |
| macseal | 268k | +5.22% |
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