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 |
|---|---|---|
| Greg Freeman | 115k | +10.64% |
| Lily Seabird | 13k | +12.87% |
| Florry | 46k | +2.98% |
| Dutch Interior | 156k | +6.08% |
| MJ Lenderman | 390k | +3.70% |
| S.G. Goodman | 92k | +3.61% |
| villagerrr | 87k | +17.42% |
| Wednesday | 393k | +3.88% |
| Shallowater | 76k | +4.71% |
| OVVEN | 33k | +55.50% |
| Friendship | 96k | — |
| Frog | 198k | +6.07% |
| Sadurn | 93k | +5.29% |
| Waxahatchee | 483k | +1.56% |
| 22º Halo | 83k | +5.28% |
| Magnolia Electric Co. | 208k | +1.26% |
| Pinegrove | 1.4M | +3.07% |
| Palace Music | 177k | +2.18% |
| Westside Cowboy | 106k | +32.43% |
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