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 |
|---|---|---|
| DJ Premier | 327k | +1.19% |
| Meyhem Lauren | 125k | +3.58% |
| Skyzoo | 153k | +0.90% |
| Cookin Soul | 374k | +1.45% |
| Evidence | 234k | +0.56% |
| Joey Bada$$ | 1.8M | +2.07% |
| Royce da 5'9" | 660k | +0.67% |
| 9th Wonder | 378k | +2.00% |
| Havoc | 191k | +6.59% |
| AZ | 587k | +1.32% |
| Ransom | 137k | +1.00% |
| Talib Kweli | 1.1M | +0.82% |
| MED | 322k | +1.09% |
| Smif-n-Wessun | 275k | +1.10% |
| Smoke DZA | 407k | +1.63% |
| Stalley | 154k | +0.99% |
| Apollo Brown | 269k | — |
| Action Bronson | 845k | +2.68% |
| Black Thought | 125k | +1.25% |
| Casey Veggies | 360k | +1.52% |
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