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 |
|---|---|---|
| architecture in tokyo | 221k | +2.72% |
| YABUJIN | 346k | +3.24% |
| Devon Hendryx | 405k | +8.06% |
| GNB CHILI | 202k | +3.88% |
| 2003 Toyota Corolla | 290k | +4.52% |
| death's dynamic shroud | 244k | +2.03% |
| desert sand feels warm at night | 146k | +3.22% |
| Infinity Frequencies | 351k | +4.70% |
| DJmegan23 | 220k | +3.49% |
| Webinar™ | 147k | +13.81% |
| No Love in the House of Gold | 202k | +6.17% |
| t e l e p a t h テレパシー能力者 | 141k | +3.41% |
| Nmesh | 172k | +3.58% |
| ESPRIT 空想 | 516k | +9.65% |
| 猫 シ Corp. | 288k | +3.36% |
| 2814 | 234k | +2.99% |
| LonelyFriendly | 5.5k | +7.98% |
| AkuraVortex | 27k | +8.06% |
| 999 Heartake Sabileye | 59k | +1.20% |
| Fax Gang | 84k | +1.02% |
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