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 |
|---|---|---|
| Okkervil River | 787k | +0.21% |
| Bright Eyes | 2.6M | +0.52% |
| Low | 1.1M | +0.87% |
| Carissa's Wierd | 472k | +5.55% |
| The National | 2.5M | +0.60% |
| Matt Berninger | 204k | +2.87% |
| Youth Lagoon | 747k | +0.45% |
| Giles Corey | 330k | +2.44% |
| Jeff Tweedy | 257k | +0.76% |
| Frightened Rabbit | 729k | +0.40% |
| Volcano Choir | 532k | +0.32% |
| The Besnard Lakes | 168k | +0.31% |
| The Walkmen | 1.1M | +1.15% |
| Shearwater | 375k | +0.69% |
| Broken Social Scene | 2.1M | +1.26% |
| Sparklehorse | 987k | +1.36% |
| Alan Sparhawk | 45k | +1.51% |
| Iron & Wine | 2.8M | +0.85% |
| Mount Eerie | 716k | +1.21% |
| Wild Beasts | 519k | +0.24% |
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