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 ascselect
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 |
|---|---|---|
| Raekwon | 886k | +0.64% |
| Slick Rick | 658k | +1.80% |
| GZA | 606k | +1.69% |
| Ol' Dirty Bastard | 996k | +1.50% |
| GZA/Genius | 325k | +0.10% |
| Public Enemy | 1.3M | +0.93% |
| Wu-Tang Clan | 2.5M | +1.50% |
| Redman | 767k | +0.93% |
| Method Man | 1.1M | +0.77% |
| Mobb Deep | 1.8M | +1.88% |
| Inspectah Deck | 173k | +0.77% |
| Masta Killa | 152k | +0.42% |
| Cappadonna | 124k | +0.56% |
| Nas | 3.4M | +1.24% |
| RZA | 499k | +0.40% |
| Method Man & Redman | 428k | +0.07% |
| U-God | 123k | +0.27% |
| Big L | 1.1M | +2.19% |
| Gang Starr | 1.6M | +1.42% |
| Capone-N-Noreaga | 228k | +1.50% |
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