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 |
|---|---|---|
| Shigeo Sekito | 176k | +9.89% |
| Cro-Magnon | 171k | +5.09% |
| Sadistics | 87k | +4.40% |
| 高中正義 | 26k | +6.41% |
| Hiroshi Sato | 152k | +2.96% |
| 細野晴臣 | 37k | +1.60% |
| Masayoshi Takanaka | 759k | +0.22% |
| Kingo Hamada | 404k | +6.43% |
| Piper | 126k | +5.01% |
| Bread and Butter | 121k | +5.09% |
| 吉田美奈子 | 13k | +2.73% |
| Jiro Inagaki and His Soul Media | 176k | +5.08% |
| Yurie Kokubu | 256k | +3.98% |
| Kangaroo | 18k | +6.02% |
| Ginger Root | 607k | +2.00% |
| 山下達郎 | 53k | +1.46% |
| 大貫妙子 | 38k | +2.33% |
| Mioko Yamaguchi | 82k | +2.63% |
| Takako Mamiya | 19k | +5.65% |
| はっぴいえんど | 94k | — |
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