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 |
|---|---|---|
| Sugar Plant | 178k | +5.64% |
| Poison Girl Friend | 338k | +6.61% |
| POiSON GiRLFRiEND | 4.3k | +9.37% |
| pitcher56 | 209k | +6.91% |
| Color Filter | 99k | +4.18% |
| Rocketship | 254k | +4.30% |
| Sweet Trip | 822k | +3.37% |
| An April March | 177k | +19.08% |
| フレネシ | 265k | +4.29% |
| Alison's Halo | 403k | +8.65% |
| The Autocollants | 176k | +8.67% |
| All Natural Lemon & Lime Flavors | 143k | +6.04% |
| カヒミ・カリィ | 43k | +0.70% |
| jenny01 | 44k | +8.14% |
| Serani Poji | 383k | +6.61% |
| The Cat's Miaow | 150k | — |
| cigarett | 26k | +2.75% |
| pasteboard | 188k | +3.28% |
| Candy Claws | 586k | +2.00% |
| Cibo Matto | 601k | +3.26% |
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