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 |
|---|---|---|
| Self | 392k | +8.67% |
| Sunny Day Real Estate | 834k | +4.49% |
| 12 Rods | 211k | +4.44% |
| The Dismemberment Plan | 240k | +0.39% |
| Hum | 510k | +6.87% |
| Johnny Foreigner | 175k | +0.85% |
| Rivers Cuomo | 269k | +1.41% |
| Ween | 1.4M | +3.30% |
| Weezer | 5.6M | +2.35% |
| Quasi | 199k | +2.47% |
| Newgrounds Death Rugby | 98k | — |
| Enon | 297k | +1.86% |
| Pinback | 871k | +1.30% |
| Red Vox | 147k | +2.51% |
| Jimmy Eat World | 3.4M | +1.50% |
| Cursive | 706k | +0.79% |
| Circa Survive | 856k | +2.94% |
| Copeland | 599k | +0.35% |
| The Rentals | 261k | +1.56% |
| Failure | 468k | +4.16% |
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