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 |
|---|---|---|
| macseal | 268k | +5.22% |
| Dikembe | 162k | +2.02% |
| Frat Mouse | 102k | — |
| Perspective, a lovely hand to hold | 80k | +1.99% |
| Worst party ever | 158k | +2.64% |
| It Looks Sad. | 215k | +1.63% |
| Retirement Party | 80k | +2.94% |
| Flight Patterns | 84k | +7.63% |
| Born Without Bones | 217k | +5.64% |
| sports. | 163k | +3.55% |
| Charmer | 117k | +2.69% |
| Panucci's Pizza | 298k | +4.83% |
| Michael Cera Palin | 194k | +3.11% |
| Canadian Softball | 56k | — |
| Sorority Noise | 412k | +2.17% |
| Brave Bird | 52k | +1.03% |
| Everyone Everywhere | 103k | +1.74% |
| Niiice. | 39k | +1.10% |
| Dowsing | 79k | +0.94% |
| This Is Pointless | 77k | +5.23% |
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