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 |
|---|---|---|
| Le Loup | 134k | — |
| Yellow Ostrich | 206k | — |
| Hop Along | 256k | +1.19% |
| The Dodos | 630k | +0.28% |
| Mutual Benefit | 188k | +1.41% |
| The Oh Hellos | 797k | +2.79% |
| Cottonwood Firing Squad | 359k | +2.76% |
| Dr. Dog | 1.9M | +3.11% |
| Lady Lamb | 252k | +5.11% |
| Hudson Freeman | 105k | +8.42% |
| Jordaan Mason | 84k | +1.69% |
| Okkervil River | 787k | +0.22% |
| Field Medic | 320k | +1.15% |
| Caroline Rose | 399k | +2.01% |
| Local Natives | 1.4M | +0.90% |
| The Decemberists | 1.9M | +0.54% |
| Nana Grizol | 210k | +1.04% |
| Damien Jurado | 672k | +0.61% |
| Mother Falcon | 91k | +1.64% |
| Thao | 126k | — |
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