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 |
|---|---|---|
| Fort Minor | 1.6M | +0.95% |
| Linkin Park | 7.1M | +1.71% |
| Dead by Sunrise | 302k | +2.12% |
| Flobots | 688k | +0.73% |
| Jay-Z and Linkin Park | 784k | +0.01% |
| Dead Sara | 176k | +3.10% |
| Styles of Beyond | 374k | +1.80% |
| 30 Seconds to Mars | 2.3M | +0.05% |
| Three Days Grace | 4.0M | +2.15% |
| Machine Gun Kelly | 1.3M | +0.09% |
| NF | 1.3M | +2.32% |
| K.Flay | 1.1M | +2.68% |
| mgk | 1.1M | +5.01% |
| Bad Meets Evil | 868k | +2.04% |
| X-Ecutioners | 171k | +1.43% |
| Sick Puppies | 1.0M | +0.84% |
| Manafest | 214k | +0.91% |
| Hoobastank | 3.0M | +2.66% |
| Breaking Benjamin | 2.9M | +1.80% |
| Call Me Karizma | 347k | +1.51% |
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