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 |
|---|---|---|
| Karri | 218k | +10.90% |
| JayDon | 142k | +31.28% |
| Odeal | 402k | +5.77% |
| Chase Shakur | 393k | +2.21% |
| Avenoir | 566k | +6.97% |
| Tory Lanez | 2.1M | +4.05% |
| Dylan Sinclair | 105k | +5.74% |
| NO GUIDNCE | 153k | +5.58% |
| 3ee | 145k | +5.47% |
| Majid Jordan | 624k | +4.13% |
| RealestK | 461k | +2.39% |
| Nobu Woods | 165k | +5.71% |
| 6LACK | 1.1M | +3.77% |
| Tommy Richman | 1.5M | +2.91% |
| 4batz | 694k | +2.61% |
| THEY. | 308k | +1.93% |
| Jordan Ward | 502k | +3.39% |
| Roy Woods | 668k | +2.56% |
| Tone Stith | 143k | +6.77% |
| Pino | 184k | +19.89% |
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