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 |
|---|---|---|
| Dean Lewis | 986k | +2.32% |
| Clinton Kane | 436k | +1.41% |
| Caleb Hearn | 169k | +3.53% |
| Jake Scott | 182k | +1.04% |
| Brent Morgan | 81k | +2.72% |
| Matt Hansen | 224k | +4.05% |
| JP Saxe | 729k | +2.77% |
| Alexander 23 | 586k | +1.43% |
| Zach Hood | 211k | +3.10% |
| A Great Big World | 851k | +1.13% |
| Jeremy Zucker | 1.1M | +1.78% |
| Alex & Sierra | 370k | +1.96% |
| Etham | 145k | +1.68% |
| Anna Clendening | 169k | +4.01% |
| He Is We | 488k | +2.33% |
| Cian Ducrot | 203k | +1.68% |
| David Kushner | 1.0M | +3.48% |
| BANNERS | 796k | +3.05% |
| Zoe Wees | 280k | +2.08% |
| mehro | 534k | +2.03% |
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