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 |
|---|---|---|
| Peach Tree Rascals | 544k | +2.43% |
| Forrest Frank | 257k | +5.34% |
| Tai Verdes | 590k | +2.18% |
| khai dreams | 657k | +1.49% |
| Quinn XCII | 469k | +1.30% |
| Nicky Youre | 704k | +4.01% |
| DOUBLECAMP | 76k | +1.18% |
| Coin | 1.0M | +1.51% |
| Samm Henshaw | 280k | +1.55% |
| Bryce Vine | 478k | +2.51% |
| Paul Russell | 413k | +2.85% |
| Andy Grammer | 965k | +3.16% |
| AJR | 1.3M | +2.15% |
| Fitz and the Tantrums | 2.0M | +3.95% |
| Christian French | 282k | +1.83% |
| Public Library Commute | 157k | +1.65% |
| Nic D | 314k | +1.87% |
| BENEE | 1.1M | +2.39% |
| Hippo Campus | 733k | +1.12% |
| Bazzi | 1.5M | +3.90% |
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