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 |
|---|---|---|
| Young Jeezy | 1.5M | +0.09% |
| T.I. | 3.5M | +1.65% |
| DJ Khaled | 3.0M | +2.22% |
| Yo Gotti | 1.3M | +1.70% |
| Rick Ross | 2.5M | +2.10% |
| Lil' Wayne | 2.3M | +0.03% |
| 2 Chainz | 1.5M | +2.08% |
| Bun B | 565k | +0.40% |
| Birdman | 1.3M | +0.87% |
| Ace Hood | 986k | +0.67% |
| Meek Mill | 1.8M | +2.47% |
| Birdman & Lil' Wayne | 538k | +0.01% |
| Young Dro | 513k | +0.82% |
| Fabolous | 1.9M | +0.96% |
| Plies | 948k | +1.30% |
| Moneybagg Yo | 762k | +3.22% |
| Gucci Mane | 2.9M | +2.63% |
| Casey Veggies | 360k | +1.48% |
| Young Money | 1.8M | +1.52% |
| Slim Thug | 480k | +0.65% |
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