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 |
|---|---|---|
| Marquette | 57k | +16.59% |
| The Exploration | 9.4k | — |
| Midwest Pen Pals | 117k | +4.25% |
| Street Smart Cyclist | 41k | +1.00% |
| Mallard | 30k | +7.20% |
| Camping in Alaska | 140k | +6.83% |
| oh my god elephant | 16k | — |
| Train Breaks Down | 149k | +10.60% |
| my point of you | 73k | +25.47% |
| Merchant Ships | 302k | +4.92% |
| Two Knights | 93k | +0.65% |
| Maggat | 83k | +15.98% |
| Brave Bird | 52k | +1.03% |
| Snowing | 163k | +1.84% |
| fear of horses | 30k | — |
| Corcovado | 19k | — |
| Marietta | 358k | +4.81% |
| Tawny Peaks | 21k | — |
| Kind of Like Spitting | 256k | +10.33% |
| Jejune | 126k | +13.71% |
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