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 |
|---|---|---|
| Hey Mercedes | 125k | +1.51% |
| Northstar | 120k | +3.16% |
| Fairweather | 35k | — |
| The Get Up Kids | 701k | +0.87% |
| Reggie and the Full Effect | 197k | +1.27% |
| Moneen | 160k | — |
| The Casket Lottery | 88k | +2.05% |
| Saves the Day | 690k | +0.72% |
| Further Seems Forever | 287k | +0.70% |
| Piebald | 183k | +1.10% |
| The Early November | 517k | +0.49% |
| Mock Orange | 67k | +1.74% |
| Spitalfield | 194k | +0.51% |
| The Promise Ring | 254k | +2.42% |
| The Anniversary | 128k | +2.08% |
| Knapsack | 161k | +1.51% |
| The Movielife | 164k | +0.65% |
| Name Taken | 95k | — |
| Brandtson | 94k | — |
| Park | 65k | — |
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