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 |
|---|---|---|
| Jason Mraz | 3.5M | +1.21% |
| Sara Bareilles | 2.2M | +0.91% |
| Skylar Grey | 652k | +1.22% |
| Kelly Clarkson | 4.6M | +1.58% |
| Daniel Powter | 1.3M | +1.24% |
| James Morrison | 1.8M | +0.45% |
| Michelle Branch | 1.1M | +1.32% |
| Anna Nalick | 765k | +0.72% |
| Ingrid Michaelson | 1.5M | +0.55% |
| Rachel Platten | 579k | +1.95% |
| Christina Perri | 2.0M | +2.12% |
| Vanessa Carlton | 1.8M | +3.39% |
| Natasha Bedingfield | 3.1M | +3.52% |
| Leona Lewis | 2.5M | +1.09% |
| Carrie Underwood | 1.9M | +1.43% |
| Ashley Tisdale | 987k | +0.80% |
| Jewel | 1.1M | +0.62% |
| Lenka | 783k | +0.96% |
| Pixie Lott | 1.0M | +0.42% |
| Jordin Sparks | 1.4M | +1.57% |
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