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 |
|---|---|---|
| The Unlikely Candidates | 246k | +1.56% |
| Arrested Youth | 242k | +2.03% |
| Fish in a Birdcage | 315k | +5.17% |
| Bear Ghost | 175k | +3.88% |
| Mother Mother | 2.0M | +2.97% |
| June | 333k | +3.44% |
| Tiagz | 239k | +3.91% |
| grandson | 865k | +2.82% |
| Friday Pilots Club | 283k | +3.92% |
| Bohnes | 270k | +3.88% |
| Adam Jensen | 222k | +1.79% |
| Sawyer Hill | 154k | +5.62% |
| The People's Thieves | 36k | +5.58% |
| Kroh | 51k | — |
| bbno$ | 1.6M | +3.41% |
| The Score | 628k | +1.94% |
| Negative 25 | 78k | +2.20% |
| Mook | 179k | +4.37% |
| Jack Black | 438k | +2.20% |
| Kodi Rhianne | 90k | +10.48% |
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