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 |
|---|---|---|
| Modern Baseball | 974k | +3.66% |
| Sorority Noise | 412k | +2.17% |
| Born Without Bones | 217k | +5.64% |
| Michael Cera Palin | 194k | +3.11% |
| Panucci's Pizza | 298k | +4.83% |
| Marietta | 358k | +4.81% |
| trsh | 146k | +4.96% |
| Frat Mouse | 102k | — |
| The Flat Stanleys | 148k | +9.83% |
| Tiger Really | 52k | +9.06% |
| Thoughts on Bowling | 92k | +13.45% |
| macseal | 268k | +5.22% |
| Camping in Alaska | 140k | +6.83% |
| It Looks Sad. | 215k | +1.63% |
| Adjust the Sails | 114k | +10.26% |
| Free Throw | 382k | +4.63% |
| Remo Drive | 293k | +1.47% |
| Worst party ever | 158k | +2.64% |
| Computer | 115k | +12.37% |
| The Front Bottoms | 954k | +2.57% |
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