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 |
|---|---|---|
| Everclear | 1.4M | +1.68% |
| Toadies | 505k | +2.52% |
| Better Than Ezra | 773k | +0.93% |
| Sponge | 279k | +1.28% |
| Marcy Playground | 1.2M | +1.96% |
| The Verve Pipe | 541k | +0.60% |
| Toad The Wet Sprocket | 533k | +0.74% |
| Gin Blossoms | 891k | +1.32% |
| Fastball | 616k | +1.32% |
| Foxy Shazam | 252k | +2.65% |
| Soul Asylum | 845k | +0.98% |
| Harvey Danger | 709k | +2.29% |
| The Presidents of the United States of America | 1.4M | +1.24% |
| Citizen King | 132k | +3.37% |
| Cracker | 439k | +2.70% |
| Collective Soul | 1.4M | +1.66% |
| Tripping Daisy | 128k | +1.66% |
| Semisonic | 1.4M | +2.07% |
| Tonic | 754k | +1.80% |
| Electrasy | 24k | — |
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