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 |
|---|---|---|
| Yeah Yeah Yeahs | 4.1M | +1.86% |
| Anna Calvi | 335k | +1.44% |
| Cat Power | 2.3M | +0.46% |
| The Dø | 534k | +0.87% |
| Dead Man's Bones | 462k | +1.74% |
| The Kills | 1.4M | +0.39% |
| Broken Bells | 1.4M | +0.50% |
| Bat for Lashes | 1.5M | +0.40% |
| Scout Niblett | 179k | +0.76% |
| Little Joy | 387k | +0.65% |
| Balthazar | 385k | +2.02% |
| Karen O and the Kids | 276k | +0.06% |
| Soko | 731k | +0.70% |
| Santigold | 1.5M | +4.75% |
| Electrelane | 380k | +1.56% |
| Emily Wells | 148k | +1.17% |
| CocoRosie | 952k | +0.16% |
| In the Valley Below | 262k | +1.91% |
| Poppy Jean Crawford | 41k | +8.95% |
| TORRES | 216k | +0.58% |
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