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 |
|---|---|---|
| Oingo Boingo | 880k | +2.39% |
| Sparks | 626k | +0.94% |
| The B-52's | 1.6M | +2.24% |
| XTC | 1.0M | +1.36% |
| Wall of Voodoo | 195k | +0.91% |
| Gang of Four | 967k | +1.32% |
| Thomas Dolby | 482k | +1.05% |
| Talking Heads | 3.3M | +1.74% |
| Tom Tom Club | 526k | +1.53% |
| Tubeway Army | 233k | +0.80% |
| Gary Numan | 1.1M | +1.50% |
| The Stranglers | 1.8M | +3.34% |
| Men Without Hats | 753k | +1.22% |
| Suburban Lawns | 117k | +1.54% |
| Elvis Costello & The Attractions | 754k | +0.88% |
| Magazine | 395k | +1.07% |
| Wire | 876k | +1.03% |
| The Go-Go's | 646k | +1.71% |
| The Cars | 1.9M | +4.26% |
| Adam Ant | 305k | +0.75% |
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