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 ascIndexed to 100 at each series' first observation.
select
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 |
|---|---|---|
| Manian | 281k | +2.08% |
| O-Zone | 868k | +2.26% |
| Master Blaster | 183k | +0.69% |
| Scooter | 1.1M | +1.14% |
| Groove Coverage | 559k | +0.43% |
| Cascada | 2.4M | +2.45% |
| Empyre One | 61k | +1.63% |
| Basshunter | 1.4M | +2.75% |
| DJ Gollum | 280k | +5.40% |
| Basslovers United | 93k | +1.02% |
| Rob Mayth | 89k | +1.18% |
| 89ers | 107k | +2.12% |
| Special D. | 263k | +0.99% |
| Gabry Ponte | 480k | +2.73% |
| Baracuda | 200k | +1.40% |
| Lizot | 237k | +1.71% |
| Tune Up! | 141k | +0.31% |
| Klaas | 342k | +1.22% |
| DJ Satomi | 170k | +2.23% |
| R.I.O. | 480k | +0.93% |
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