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 |
|---|---|---|
| ok.danke.tschüss | 23k | — |
| MIA. | 170k | +0.38% |
| Herbert Grönemeyer | 350k | +0.77% |
| Wir sind Helden | 533k | +1.46% |
| 2raumwohnung | 368k | — |
| Deichkind | 425k | +0.38% |
| Donots | 302k | +0.63% |
| Jennifer Rostock | 122k | — |
| Grossstadtgeflüster | 109k | — |
| Frida Gold | 104k | — |
| Samy Deluxe | 242k | — |
| Rosenstolz | 243k | +0.37% |
| Yvonne Catterfeld | 89k | — |
| Juli | 383k | +1.68% |
| Seeed | 555k | +0.74% |
| Jan Delay | 351k | +0.41% |
| Provinz | 94k | +4.05% |
| Die Fantastischen Vier | 428k | +0.68% |
| Sido | 391k | +1.00% |
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