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 |
|---|---|---|
| Johnny Foreigner | 175k | +0.82% |
| american poetry club | 41k | +1.94% |
| Wilbur Soot | 400k | +2.37% |
| Lovejoy | 608k | +2.29% |
| The Front Bottoms | 953k | +2.41% |
| Tokyo Police Club | 1.0M | +0.38% |
| Ricky Jamaraz | 41k | +3.17% |
| Slow Club | 392k | +0.14% |
| Voxtrot | 593k | +0.61% |
| Bears in Trees | 109k | +1.71% |
| Slaughter Beach, Dog | 455k | +2.50% |
| Dananananaykroyd | 120k | +0.14% |
| Frightened Rabbit | 729k | +0.40% |
| The Wombats | 2.1M | +1.20% |
| Car Seat Headrest | 1.4M | +2.45% |
| Japandroids | 454k | +0.37% |
| Titus Andronicus | 328k | +0.24% |
| We Were Promised Jetpacks | 390k | +0.99% |
| Someone Still Loves You Boris Yeltsin | 528k | +0.85% |
| Stars | 1.4M | +0.44% |
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