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 |
|---|---|---|
| Vinyl Williams | 108k | +1.60% |
| Tagore | 56k | — |
| Mcbaise | 170k | — |
| Feng Suave | 333k | +2.22% |
| Boogarins | 202k | +1.33% |
| Swim Mountain | 125k | — |
| Chelou | 189k | +1.76% |
| Mild Orange | 206k | — |
| GUM | 191k | +1.49% |
| Yellow Days | 490k | +1.04% |
| Dumbo Gets Mad | 277k | +0.77% |
| Curumin | 173k | +2.86% |
| Dope Lemon | 548k | +3.14% |
| Carne Doce | 110k | — |
| Levitation Room | 271k | +1.66% |
| The Ghost of a Saber Tooth Tiger | 45k | — |
| The Holydrug Couple | 413k | +1.19% |
| Metá Metá | 89k | +2.18% |
| Pond | 618k | +1.89% |
| The Mirrors | 46k | — |
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