Airplay Artist Charts

ACR airplay artist charts. Duration and optional cityId select the source acr_*_artist_*chart table. Merges Artist.getBasicInfoBatch(artistIds) plus batched historical rankStats from QUERY_GET_USER_RANKINGS.ACR_BATCH.

Query Parameters
  • date
    Type: stringFormat: date-time

    Charting date (YYYY-MM-DD). Defaults to the latest available chart when omitted.

  • since
    Type: stringFormat: date-time

    Lower bound of the date range (YYYY-MM-DD). Required unless latest=true.

  • limit
    Type: integer

    Maximum entries returned per request (max 500).

  • duration
    Type: stringenum
    required

    Chart duration (e.g. daily, weekly, monthly).

    values
    • daily
    • weekly
    • monthly
    • semi-yearly
    • yearly
    • all_time
  • country_code
    Type: stringenum

    Airplay country code; only the ACR-supported countries are accepted. Defaults to 'GLOBAL'.

    values
    • AF
    • NL
    • AN
    • AL
    • DZ
  • latest
    Type: boolean

    If true, use the most recently available date and ignore since.

Responses
  • application/json
Request Example for get/api/charts/airplay/artists
curl 'https://api.chartmetric.com/api/charts/airplay/artists?date=&since=&limit=1&duration=daily&country_code=GLOBAL&latest=true' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "obj": {
    "length": null,
    "data": [
      {
        "rank": null,
        "pre_rank": null,
        "peak_rank": null,
        "peak_date": "2026-06-19T06:30:35.333Z",
        "added_at": "2026-06-19T06:30:35.333Z",
        "velocity": null,
        "time_on_chart": "string",
        "code2": null,
        "city_id": null,
        "plays": 1,
        "cm_artist": null,
        "id": 0,
        "name": null,
        "image_url": null,
        "isni": null,
        "hometown_city": null,
        "current_city": null,
        "sp_followers": null,
        "sp_popularity": null,
        "sp_monthly_listeners": null,
        "deezer_fans": null,
        "tags": [],
        "spotify_artist_ids": [
          1
        ],
        "itunes_artist_ids": [
          1
        ],
        "deezer_artist_ids": [
          1
        ],
        "amazon_artist_ids": [
          1
        ],
        "cm_artist_rank": null,
        "rankStats": [
          {
            "rank": null,
            "plays": 1,
            "timestp": "2026-06-19T06:30:35.333Z"
          }
        ]
      }
    ]
  }
}