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 |
|---|---|---|
| Sugababes | 1.6M | +0.92% |
| Mis-Teeq | 347k | +3.32% |
| Liberty X | 186k | +0.99% |
| Jennifer Paige | 462k | +2.51% |
| Anastacia | 1.1M | +1.67% |
| Rachel Stevens | 286k | +0.59% |
| Samantha Mumba | 241k | +1.05% |
| Atomic Kitten | 685k | +1.97% |
| Christina Milian | 785k | +0.95% |
| Alesha Dixon | 429k | +0.95% |
| Mutya Buena | 266k | +0.78% |
| Louise | 99k | +0.98% |
| Girls Aloud | 1.1M | +0.75% |
| Alexandra Burke | 603k | +0.47% |
| The Saturdays | 692k | +0.52% |
| Daniel Bedingfield | 598k | +1.59% |
| All Saints | 866k | +1.19% |
| Geri Halliwell | 482k | +1.41% |
| S Club | 204k | +6.58% |
| Cheryl Cole | 673k | +0.04% |
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