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 |
|---|---|---|
| Emlyn | 111k | +1.62% |
| Haiden Henderson | 158k | +10.25% |
| Anna Clendening | 169k | +4.20% |
| Peach PRC | 190k | +2.13% |
| Adam Lambert | 1.3M | +1.59% |
| Stela Cole | 232k | +3.63% |
| Natalie Jane | 222k | +2.39% |
| Leah Kate | 410k | +2.59% |
| Maddie Zahm | 215k | +2.77% |
| Ryan Mack | 289k | +2.87% |
| Jessia | 118k | +2.22% |
| Chandler Leighton | 195k | +4.44% |
| Conor Maynard | 516k | +3.05% |
| Loote | 298k | +1.33% |
| Zach Hood | 211k | +3.20% |
| Lilyisthatyou | 153k | +3.55% |
| salem ilese | 519k | +2.42% |
| Julia Michaels | 1.2M | +2.67% |
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