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 |
|---|---|---|
| Maddie & Tae | 195k | +1.95% |
| Carly Pearce | 149k | +3.58% |
| Miranda Lambert | 1.0M | +1.33% |
| Maren Morris | 536k | +1.77% |
| Morgan Wade | 75k | +2.08% |
| Lainey Wilson | 244k | +8.37% |
| Megan Moroney | 329k | +6.48% |
| Parker McCollum | 151k | +3.74% |
| Carter Faith | 60k | +11.64% |
| Ashley Cooke | 66k | +6.27% |
| Tucker Wetmore | 178k | +10.34% |
| Sunny Sweeney | 58k | +0.55% |
| Cam | 233k | +1.15% |
| Jordan Davis | 342k | +2.86% |
| Jack Ingram | 182k | +0.75% |
| Maggie Rose | 46k | +1.46% |
| Lola Kirke | 119k | +2.42% |
| Avery Anna | 97k | +9.99% |
| Margo Price | 123k | +3.00% |
| Ingrid Andress | 153k | +2.08% |
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