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 |
|---|---|---|
| Blu & Exile | 226k | +1.10% |
| MED, Blu & Madlib | 22k | +0.64% |
| MED | 322k | +1.09% |
| DJ Muggs | 196k | +2.49% |
| Murs | 356k | +0.45% |
| Asher Roth | 846k | +0.25% |
| Oh No | 341k | +1.90% |
| 9th Wonder | 378k | +2.00% |
| Evidence | 234k | +0.56% |
| Knxwledge | 585k | +0.60% |
| Little Brother | 436k | +1.93% |
| Genesis Owusu | 348k | +12.63% |
| Roc Marciano | 226k | +2.28% |
| Skyzoo | 153k | +0.90% |
| Young Roddy | 31k | +0.74% |
| Estee Nack | 24k | +3.74% |
| Boldy James | 821k | +1.34% |
| Your Old Droog | 228k | +1.36% |
| Quelle Chris | 191k | +1.25% |
| Tha God Fahim | 67k | +5.11% |
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