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 |
|---|---|---|
| Wych Elm | 88k | — |
| human people | 72k | +2.56% |
| Lady Pills | 41k | +3.40% |
| Alex Vile | 55k | — |
| Aligns | 89k | — |
| Sunday Cruise | 146k | +15.04% |
| Hands Off Gretel | 44k | — |
| Jigsaw Youth | 32k | — |
| Destroy Boys | 786k | +3.38% |
| Hello Mary | 72k | +0.82% |
| The Oozes | 239k | +3.99% |
| The Jins | 180k | +3.28% |
| False Advertising | 13k | — |
| Destructo Disk | 174k | +2.86% |
| Be Your Own Pet | 448k | +1.37% |
| Pinkshift | 210k | +3.15% |
| VENUS GRRRLS | 29k | — |
| Dazey and the Scouts | 698k | +6.62% |
| Trophy Wife | 158k | +10.93% |
| Remember Sports | 153k | +2.19% |
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