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 |
|---|---|---|
| Austin Farwell | 758k | +3.65% |
| Yehezkel Raz | 736k | +2.75% |
| Toshifumi Hinata | 597k | +3.29% |
| Elijah Fox | 513k | +2.88% |
| Hikaru Shirosu | 275k | +3.89% |
| Franz Gordon | 525k | +2.76% |
| Alej | 249k | +6.43% |
| Jacob LaVallee | 308k | +3.63% |
| Frédéric Schubert | 237k | +2.55% |
| Emile Pandolfi | 285k | +2.07% |
| Trevor Kowalski | 252k | +3.32% |
| Kilgore Doubtfire | 173k | +10.23% |
| Borrtex | 271k | +2.32% |
| Lullatone | 283k | +1.82% |
| Robert Gromotka | 168k | +9.13% |
| Fabrizio Paterlini | 739k | +1.44% |
| Martin Bloch | 130k | +3.29% |
| Luke Faulkner | 287k | +4.13% |
| Aspidistrafly | 207k | +3.47% |
| Javi Lobe | 203k | +1.79% |
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