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 ascNo comparison cohort available for this artist yet — showing its own indexed series only.
Indexed to 100 at each series' first observation.
select
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 |
|---|---|---|
| Hillsong Worship | 212k | +2.63% |
| Bethel Music | 205k | +2.65% |
| Elevation Worship | 219k | +3.43% |
| Jesus Culture | 136k | +1.60% |
| Chris Tomlin | 408k | +1.05% |
| Hillsong Young & Free | 132k | +2.01% |
| Passion | 181k | +1.98% |
| Matt Redman | 255k | +1.16% |
| Phil Wickham | 246k | +1.51% |
| Kari Jobe | 137k | +0.17% |
| Casting Crowns | 367k | +0.88% |
| Leeland | 214k | +1.66% |
| Planetshakers | 124k | +1.28% |
| Maverick City Music | 121k | +4.56% |
| Cody Carnes | 63k | +4.11% |
| Housefires | 70k | +4.67% |
| Red Rocks Worship | 36k | +4.32% |
| Darlene Zschech | 107k | +0.55% |
| Gateway Worship | 75k | +4.31% |
| Brandon Lake | 109k | +6.73% |
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