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 |
|---|---|---|
| Rachael Yamagata | 753k | +0.25% |
| Ingrid Michaelson | 1.5M | +0.57% |
| Catherine Feeny | 241k | +1.52% |
| Lenka | 783k | +1.00% |
| A Fine Frenzy | 857k | +0.21% |
| Sara Bareilles | 2.2M | +0.94% |
| Tristan Prettyman | 532k | +0.07% |
| Meiko | 425k | +0.32% |
| Joshua Radin | 1.1M | +0.15% |
| Erin McCarley | 281k | +0.29% |
| Cécile Corbel | 138k | +2.92% |
| Mindy Gledhill | 136k | +1.08% |
| Lisa Hannigan | 479k | +1.28% |
| The Weepies | 843k | +0.30% |
| Kina Grannis | 574k | +0.72% |
| William Fitzsimmons | 820k | +0.14% |
| Mree | 159k | — |
| Colbie Caillat | 2.1M | +0.99% |
| Anna Nalick | 765k | +0.74% |
| Alexi Murdoch | 943k | +0.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