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 |
|---|---|---|
| Ian | 718k | +4.92% |
| BNYX® | 259k | +21.04% |
| SeptembersRich | 185k | +2.99% |
| Yeat, Lil Uzi Vert | 13k | +3.31% |
| Gorn | 80k | +10.36% |
| Cochise | 1.0M | +2.85% |
| JELEEL! | 366k | +2.37% |
| Hako | 366k | +3.05% |
| Rich Amiri | 875k | +4.54% |
| Dave Blunts | 198k | +3.73% |
| Lil Tecca | 1.8M | +3.14% |
| Mario Judah | 363k | +3.19% |
| Yung Kayo | 115k | +2.64% |
| Matt OX | 200k | +3.13% |
| Ken Carson | 1.2M | +4.41% |
| Lil Uzi Vert | 2.9M | +3.12% |
| Dom Corleo | 382k | +3.01% |
| SOSOCAMO | 381k | +0.31% |
| mikeeysmind | 782k | +5.21% |
| HxG | 133k | +35.42% |
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