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 |
|---|---|---|
| Blue | 709k | +2.14% |
| Boyzone | 456k | +0.85% |
| Shane Filan | 74k | +2.83% |
| A1 | 231k | +3.02% |
| Michael Learns to Rock | 247k | +2.07% |
| Ronan Keating | 810k | +0.78% |
| Daniel Bedingfield | 598k | +1.59% |
| Backstreet Boys | 3.1M | +2.27% |
| David Archuleta | 587k | +1.15% |
| Gareth Gates | 162k | +0.94% |
| Shayne Ward | 310k | +0.60% |
| Daniel Powter | 1.3M | +1.24% |
| 98º | 191k | +2.00% |
| Five | 472k | +1.32% |
| Nick Carter | 102k | +0.66% |
| *NSYNC | 2.1M | +3.12% |
| Brian McFadden | 133k | +0.26% |
| O-Town | 208k | +1.89% |
| Steps | 402k | +0.87% |
| Take That | 1.3M | +1.18% |
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