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 |
|---|---|---|
| Rivers Cuomo | 269k | +1.41% |
| that dog. | 112k | +3.53% |
| Weezer | 5.6M | +2.35% |
| Superdrag | 138k | +2.60% |
| Fountains of Wayne | 1.5M | +2.50% |
| Abandoned Pools | 150k | +6.93% |
| Billy Cobb | 147k | +2.74% |
| Grandaddy | 960k | +1.04% |
| Plumtree | 299k | +1.63% |
| Superchunk | 328k | +1.23% |
| Nada Surf | 1.2M | +0.57% |
| Built to Spill | 1.3M | +1.52% |
| Archers of Loaf | 286k | +1.70% |
| Camper Van Beethoven | 252k | +0.74% |
| Frank Black | 500k | +0.60% |
| The Get Up Kids | 701k | +0.87% |
| Pavement | 2.2M | +1.73% |
| Modest Mouse | 3.5M | +1.18% |
| The Wrens | 324k | +1.20% |
| The Amps | 130k | +1.43% |
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