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 |
|---|---|---|
| jagger finn | 605k | +1.69% |
| Them & I | 436k | +11.56% |
| mage tears | 449k | +5.63% |
| Pity Party (Girls Club) | 776k | +1.66% |
| sundots | 477k | +7.11% |
| Gigi Perez | 1.5M | +7.08% |
| Roland Faunte | 103k | +1.82% |
| bedside kites | 140k | +1.36% |
| fairies in our house | 144k | +3.03% |
| Fox Academy | 447k | +1.67% |
| Cavetown | 1.7M | +2.81% |
| yungatita | 416k | +7.48% |
| Yot Club | 1.5M | +3.06% |
| The Army, The Navy | 312k | +10.51% |
| Cyberbully Mom Club | 253k | +1.70% |
| Peachy!, mxmtoon | 11k | +1.82% |
| EKKSTACY | 1.0M | +4.14% |
| Sofia Mills | 300k | +0.12% |
| A-wall | 581k | +4.65% |
| girl in red | 2.6M | +3.12% |
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