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 ascIndexed to 100 at each series' first observation.
select
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 |
|---|---|---|
| Jimmy Urine | 122k | +5.75% |
| NEEDY GIRL OVERDOSE | 250k | +6.49% |
| Show Me the Body, Princess Nokia | 4.2k | +14.99% |
| OMFG | 254k | +4.17% |
| EAT BABIES? | 12k | — |
| Mom | 144k | +8.86% |
| You Love Her | 134k | +3.58% |
| vivivivivi | 73k | +5.17% |
| Kitsune² | 19k | +1.48% |
| Savlonic | 118k | — |
| Girls Rituals | 216k | +20.29% |
| Toxic Lipstick | 69k | +11.46% |
| Devi McCallion | 311k | +16.51% |
| Janina | 55k | +111.59% |
| flvtter | 30k | +19.07% |
| The Left Rights | 85k | +6.91% |
| The Real Tuesday Weld | 226k | +4.32% |
| Miss Papaya | 76k | +59.13% |
| the scary jokes | 213k | +6.11% |
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