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 |
|---|---|---|
| Parannoul | 322k | +5.03% |
| samlrc | 47k | — |
| Asian Glow | 203k | +2.20% |
| Della Zyr | 62k | +4.53% |
| WillyRodriguezWasTaken | 75k | +15.10% |
| Lift to Experience | 128k | +4.47% |
| Panchiko | 1.3M | +7.94% |
| Weatherday | 343k | +2.58% |
| Five Pebbles | 84k | +2.84% |
| Candy Claws | 586k | +2.00% |
| Honeydip | 93k | +17.34% |
| Drug Bug | 48k | +29.28% |
| 東京酒吐座(Tokyo Shoegazer) | 103k | +17.92% |
| Summer 2000 | 335k | +3.42% |
| Tokyo Shoegazer | 16k | — |
| Sweet Trip | 822k | +3.37% |
| kinoue64 | 109k | +12.24% |
| BrokenTeeth | 37k | — |
| Ee | 86k | +14.31% |
| venturing | 171k | +1.31% |
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