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 |
|---|---|---|
| lil hero | 320k | +0.34% |
| FiFi Zhang | 115k | +9.40% |
| Dre'es | 226k | +5.41% |
| LOVELI LORI | 392k | +8.06% |
| Micah Dailey-White | 140k | +5.35% |
| lexycat | 190k | +0.67% |
| Jomm | 98k | +12.70% |
| kanii | 759k | +3.76% |
| Chanpan | 146k | +11.59% |
| galdive | 192k | +3.22% |
| Syd Taylor | 55k | +9.40% |
| Magdalena Bay | 1.5M | +4.50% |
| Pebbles&TamTam | 152k | +10.92% |
| $i#dzy | 95k | +11.27% |
| Tiffany Day | 480k | +33.38% |
| Cowgirl Clue | 242k | +5.47% |
| Chase Icon | 377k | +6.66% |
| Aliyah's Interlude | 608k | +3.43% |
| Sophia Stel | 237k | +0.50% |
| Yaego | 144k | +16.05% |
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