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 |
|---|---|---|
| Tedeschi Trucks Band | 203k | +2.93% |
| The Derek Trucks Band | 212k | +0.44% |
| Bonnie Raitt | 840k | +1.63% |
| Samantha Fish | 69k | — |
| Kenny Wayne Shepherd Band | 129k | +0.10% |
| Jonny Lang | 280k | — |
| JJ Grey & Mofro | 132k | — |
| Gregg Allman | 155k | +1.06% |
| Gov't Mule | 301k | +0.37% |
| Sue Foley | 38k | — |
| Robert Randolph & The Family Band | 197k | — |
| Bobby Rush | 87k | — |
| Delbert McClinton | 93k | — |
| Taj Mahal | 510k | +0.81% |
| Shemekia Copeland | 72k | — |
| Big Head Todd and the Monsters | 130k | +2.11% |
| Los Lonely Boys | 246k | +1.89% |
| Keb' Mo' | 298k | — |
| Joanne Shaw Taylor | 79k | — |
| Warren Haynes | 121k | +0.54% |
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