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 |
|---|---|---|
| DJ Project | 56k | +1.13% |
| O-Zone | 868k | +2.26% |
| Fly Project | 306k | +7.41% |
| Morandi | 293k | +1.36% |
| Dan Balan | 206k | +1.47% |
| Andreea Banica | 31k | +3.14% |
| Play & Win | 46k | +3.67% |
| Inna | 1.1M | +2.69% |
| Edward Maya | 1.3M | +7.63% |
| Morris | 112k | +7.24% |
| Activ | 53k | +0.76% |
| Antonia | 54k | +4.20% |
| Łobuzy | 42k | +4.75% |
| Alexandra Stan | 1.4M | +3.99% |
| Arash | 312k | +3.04% |
| Mohombi | 467k | +2.76% |
| Tom Boxer | 55k | +4.23% |
| Edward Maya & Vika Jigulina | 144k | +0.97% |
| DJ Sava | 37k | +2.60% |
| Radio Killer | 70k | +1.05% |
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