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 ascIndexed 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 |
|---|---|---|
| Jerry Reed | 332k | +2.19% |
| Dale Watson | 69k | +0.49% |
| Dick Curless | 45k | +11.12% |
| Del Reeves | 41k | +2.04% |
| Red Simpson | 27k | +3.36% |
| Stonewall Jackson | 82k | +1.49% |
| Red Sovine | 42k | +2.33% |
| Commander Cody And His Lost Planet Airmen | 37k | +2.61% |
| C.W. McCall | 123k | +2.86% |
| The Statler Brothers | 428k | +0.86% |
| Jimmy Dean | 120k | +3.29% |
| Roger Miller | 520k | +1.55% |
| Ernest Tubb | 185k | +1.56% |
| Roy Clark | 41k | +2.75% |
| Tom T. Hall | 248k | +2.15% |
| Eddy Arnold | 300k | +2.32% |
| Hank Locklin | 87k | +0.86% |
| Johnny Paycheck | 238k | +2.11% |
| Mel Tillis | 33k | +1.55% |
| Bobby Bare | 164k | +1.21% |
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