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 |
|---|---|---|
| Limbo | 462k | +6.37% |
| Zach Templar | 383k | +8.93% |
| proderics | 439k | +19.20% |
| s0rrow | 105k | +75.72% |
| juju<3 | 729k | +4.76% |
| phendste | 127k | +4.17% |
| zombiwebz | 51k | +57.74% |
| lavi kou | 281k | +9.90% |
| A-wall | 583k | +5.08% |
| Lonely God | 741k | +2.70% |
| Otuka | 297k | +7.98% |
| Corbon Amodio | 295k | +28.30% |
| Bunii | 130k | +18.52% |
| Jace June | 172k | +7.56% |
| Ax and the Hatchetmen | 342k | +0.74% |
| JVKE | 1.7M | +4.09% |
| Cafuné | 1.6M | +5.53% |
| TV Girl | 3.0M | +3.91% |
| Hot Freaks | 502k | +7.57% |
| asumuh | 98k | +5.38% |
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