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 |
|---|---|---|
| Mc IG | 312k | +3.58% |
| MC Ryan SP | 211k | +3.90% |
| DJ Biel Divulga | 156k | +6.67% |
| MC Jvila | 134k | +8.45% |
| MC Joãozinho VT | 114k | +5.29% |
| MC LUUKY | 190k | +3.93% |
| Boladin 211 | 144k | +6.00% |
| Mc Jacaré | 304k | +5.72% |
| MC Cebezinho | 147k | +2.95% |
| Mc Tuto | 203k | +3.30% |
| DJ Japa NK | 258k | +8.66% |
| tarisiix | 100k | +9.79% |
| DJ GBR | 255k | +2.50% |
| DJ DOZABRI | 223k | +5.89% |
| MC Marks | 170k | +4.56% |
| MC Kevin | 257k | +3.51% |
| DJ KOALA6 | 83k | +14.47% |
| DJ Oreia | 89k | +42.63% |
| MC DANIEL | 150k | +1.78% |
| MC Menor da VG | 198k | +6.66% |
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