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 |
|---|---|---|
| Ricky Martin | 1.7M | +3.42% |
| Los Del Rio | 700k | +4.39% |
| Rednex | 803k | +1.75% |
| Las Ketchup | 537k | +3.67% |
| Los Del Río | 29k | +3.21% |
| Haddaway | 1.7M | +2.95% |
| Real McCoy | 461k | +3.19% |
| Bellini | 383k | +5.23% |
| Whigfield | 416k | +2.54% |
| Eiffel 65 | 1.3M | +2.46% |
| Mr. President | 443k | +4.30% |
| Vengaboys | 1.2M | +2.68% |
| Modern Talking | 1.4M | +2.51% |
| Cartoons | 190k | +2.76% |
| Scatman John | 671k | +2.16% |
| Right Said Fred | 489k | +1.08% |
| Boney M. | 2.1M | +2.85% |
| Boyzone | 456k | +0.85% |
| La Bouche | 1.0M | +5.23% |
| Taio Cruz | 2.9M | +2.07% |
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