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 |
|---|---|---|
| Damiano David | 426k | +5.06% |
| Palaye Royale | 526k | +2.18% |
| The Vampire Lestat | 34k | — |
| The Warning | 261k | +8.99% |
| Imagine Dragons | 4.2M | +1.96% |
| Nothing But Thieves | 1.1M | +3.29% |
| The Struts | 561k | +3.15% |
| Mahmood | 254k | +1.82% |
| Des Rocs | 304k | +2.89% |
| Royal Blood | 1.1M | +2.26% |
| The Pretty Reckless | 1.4M | +1.55% |
| Andy Black | 229k | +2.97% |
| Muse | 6.5M | +1.77% |
| Royal Republic | 271k | +1.16% |
| Crawlers | 286k | +3.08% |
| Moon Walker | 175k | +5.65% |
| The Haunt | 194k | +5.66% |
| Three Days Grace | 4.0M | +2.26% |
| Alexandra Căpitănescu | 50k | +221.09% |
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