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 |
|---|---|---|
| Dr. Dog | 1.9M | +2.98% |
| Vetiver | 520k | +0.48% |
| Whitney | 608k | +1.08% |
| Michael Nau | 352k | +8.25% |
| Houndmouth | 474k | +1.74% |
| Kishi Bashi | 525k | +1.13% |
| Cut Worms | 127k | +2.19% |
| Kevin Morby | 449k | +2.83% |
| River Whyless | 316k | +3.06% |
| Blitzen Trapper | 607k | +0.41% |
| Cotton Jones | 260k | +3.32% |
| Andrew Bird | 1.7M | +0.52% |
| Generationals | 577k | +0.97% |
| Shakey Graves | 500k | +1.75% |
| Caamp | 473k | +2.38% |
| Bonny Light Horseman | 139k | +1.43% |
| Andy Shauf | 404k | +0.95% |
| Great Lake Swimmers | 705k | +0.45% |
| The Felice Brothers | 265k | +0.74% |
| Chris Staples | 202k | +0.92% |
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