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 |
|---|---|---|
| Inara George | 183k | +0.31% |
| Ivy | 403k | +3.36% |
| Kimbra | 502k | +0.86% |
| Stars | 1.4M | +0.44% |
| Chairlift | 891k | +0.73% |
| Feist | 2.9M | +5.10% |
| HOLYCHILD | 297k | +4.47% |
| Jem | 952k | +0.22% |
| She & Him | 1.9M | +5.39% |
| Mazie | 426k | +2.79% |
| Passion Pit | 2.6M | +1.77% |
| Au Revoir Simone | 671k | +0.29% |
| Pomplamoose | 607k | +4.05% |
| Architecture in Helsinki | 1.0M | +0.18% |
| The Blow | 372k | +0.21% |
| Self | 391k | +8.22% |
| Miniature Tigers | 738k | +1.47% |
| Metric | 3.0M | +2.99% |
| The Cardigans | 3.8M | +2.93% |
| Sunday Cruise | 145k | +14.36% |
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