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 |
|---|---|---|
| Matt Skiba And The Sekrets | 27k | +0.93% |
| Bayside | 580k | +1.06% |
| Matt Skiba | 76k | +0.48% |
| The Lawrence Arms | 223k | +0.43% |
| The Bouncing Souls | 535k | +0.70% |
| New Found Glory | 1.5M | +0.92% |
| Anti-Flag | 1.0M | +0.35% |
| The Menzingers | 266k | +1.79% |
| Motion City Soundtrack | 1.2M | +0.62% |
| The Ataris | 937k | +0.77% |
| Hot Water Music | 370k | +0.50% |
| blink-182 | 4.7M | +1.51% |
| Off With Their Heads | 125k | +0.64% |
| Face to Face | 336k | +0.93% |
| MxPx | 732k | +0.45% |
| The Flatliners | 191k | +0.94% |
| No Use for a Name | 507k | +0.45% |
| Banner Pilot | 80k | +0.85% |
| Red City Radio | 66k | +0.95% |
| Fenix TX | 314k | +0.67% |
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