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 |
|---|---|---|
| Marmaduke Duke | 106k | +0.19% |
| Feeder | 985k | +0.64% |
| Twin Atlantic | 300k | +0.56% |
| Idlewild | 393k | +0.39% |
| Arcane Roots | 89k | +1.14% |
| Reuben | 102k | +0.38% |
| Hundred Reasons | 167k | +0.42% |
| Don Broco | 269k | +2.97% |
| Frightened Rabbit | 729k | +0.40% |
| Dinosaur Pile-Up | 200k | +1.65% |
| Fightstar | 290k | +0.43% |
| Oceansize | 279k | +0.52% |
| Snow Patrol | 4.2M | +1.30% |
| The Enemy | 513k | +0.48% |
| Jimmy Eat World | 3.4M | +1.44% |
| The Xcerts | 100k | +0.99% |
| Nothing But Thieves | 1.1M | +3.17% |
| Maxïmo Park | 793k | +0.07% |
| Lonely The Brave | 129k | +0.32% |
| Manchester Orchestra | 1.5M | +1.46% |
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