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 |
|---|---|---|
| Fifth Harmony | 1.8M | +3.24% |
| Shawn Mendes | 2.9M | +4.22% |
| Lauren Jauregui | 313k | +1.28% |
| Katy Perry | 7.3M | +2.47% |
| Halsey | 3.0M | +3.28% |
| Tate McRae | 2.4M | +3.35% |
| Hailee Steinfeld | 1.3M | +2.49% |
| Selena Gomez | 3.3M | +2.69% |
| Demi Lovato | 3.5M | +3.45% |
| Dinah Jane | 69k | +1.56% |
| Madison Beer | 1.8M | +3.97% |
| Ariana Grande | 4.6M | +3.32% |
| Sabrina Carpenter | 3.4M | +3.08% |
| Little Mix | 1.9M | +2.32% |
| Bebe Rexha | 1.6M | +4.96% |
| Zara Larsson | 2.5M | +6.51% |
| Miley Cyrus | 5.0M | +1.95% |
| Selena Gomez & the Scene | 2.6M | +3.40% |
| Johnny Orlando | 290k | +3.48% |
| Normani | 801k | +1.67% |
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