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 |
|---|---|---|
| Japancakes | 109k | — |
| Robin Guthrie & Harold Budd | 36k | +0.58% |
| Harold Budd | 636k | +1.43% |
| Cocteau Twins | 2.4M | +3.83% |
| Eraldo Bernocchi, Harold Budd, Robin Guthrie | 3.9k | +2.08% |
| Harold Budd, Simon Raymonde, Robin Guthrie & Elizabeth Fraser | 13k | +2.35% |
| Dif Juz | 37k | +1.30% |
| Michael Brook | 182k | +2.23% |
| This Mortal Coil | 477k | +1.78% |
| Roger Eno | 294k | +1.37% |
| John Foxx & Harold Budd | 28k | +0.21% |
| July Skies | 92k | — |
| Hammock | 694k | +0.69% |
| Slowdive | 2.3M | +3.52% |
| Harold Budd/Brian Eno | 87k | +0.21% |
| Love Spirals Downwards | 286k | +5.34% |
| Autumn's Grey Solace | 276k | +6.91% |
| Airiel | 332k | +6.28% |
| Tamaryn | 486k | +7.44% |
| Pale Saints | 698k | +6.12% |
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