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 |
|---|---|---|
| Jere Klein | 138k | +4.48% |
| Cris MJ | 587k | +0.18% |
| Standly | 165k | +6.63% |
| FloyyMenor | 765k | +0.22% |
| El Bogueto | 272k | +17.84% |
| Martinwhite | 91k | +16.94% |
| Ñengo Flow | 257k | +4.66% |
| Lucky Brown | 75k | +4.42% |
| Super Yei | 145k | +5.68% |
| SINAKA | 41k | +8.77% |
| Kidd Voodoo | 121k | +12.71% |
| El Malilla | 77k | +8.77% |
| KATTEYES | 88k | +11.37% |
| J Alvarez | 237k | +5.23% |
| Anuel AA | 647k | +4.04% |
| Polimá Westcoast | 194k | +2.41% |
| Ñejo | 129k | +5.12% |
| Bryant Myers | 216k | +4.62% |
| La Obsesion | 58k | +20.12% |
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