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 |
|---|---|---|
| Don Omar | 1.9M | +4.29% |
| Daddy Yankee | 2.3M | +3.61% |
| Tego Calderón | 353k | +6.08% |
| Tego Calderon | 182k | +0.27% |
| J Alvarez | 237k | +5.23% |
| Randy Nota Loca | 99k | +53.94% |
| Baby Rasta y Gringo | 99k | +9.94% |
| Alexis y Fido | 289k | +2.84% |
| Jedis | 88k | +17.03% |
| The Streets | 1.3M | +0.96% |
| De La Ghetto | 316k | +3.97% |
| Ñengo Flow | 257k | +4.66% |
| Tito El Bambino | 157k | +0.31% |
| Cosculluela | 321k | +3.52% |
| Cris MJ | 587k | +0.18% |
| Porta | 131k | — |
| Omar Courtz | 269k | +13.32% |
| Canserbero | 176k | +4.59% |
| Calle 13 | 636k | +2.52% |
| Tainy | 851k | +4.32% |
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