Channels Results

Get results of a channel on a specified day

GET https://api-v2.acrcloud.com/api/bm-hist-projects/:pid/channels/:channel_id/results

Path Parameters

Name
Type
Description

pid

number

The project id

channel_id

number

The channel id

Query Parameters

Name
Type
Description

date

string

Get the results for a certain day you specified. The format is YYYYmmdd (E.g. 20250221)

Headers

Name
Type
Description

Authorization

string

Bearer token

Accept

string

application/json

{
  "data": [
    {
      "status": {
        "msg": "Success",
        "code": 0,
        "version": "1.0"
      },
      "result_type": 0,
      "metadata": {
        "type": "historical",
        "timestamp_utc": "2025-02-21 10:20:25",
        "played_duration": 117,
        "record_timestamp": "20250221102025",
        "music": [
          {
            "title": "What You Know Bout Love",
            "artists": [
              {
                "name": "Pop Smoke"
              }
            ],
            "album": {
              "name": "Shoot For The Stars Aim For The Moon"
            },
            "release_date": "2020-07-03",
            "duration_ms": 160000,
            "score": 100,
            "acrid": "dda6ca5475ba126aa02b88ebe9b9b4cd",
            "external_ids": {
              "isrc": [
                "USUM72013339"
              ],
              "upc": [
                "00602507456573"
              ]
            }
          }
        ]
      }
    }
  ]
}

Last updated