Channels Results
Get non-real-time results of channel monitoring
GET
https://api-v2.acrcloud.com/api/bm-bd-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 |
---|---|---|
type | string | last: get the last result day: get the day result Default is day. |
date | string | get the results for a certain day you specified. The format is YYYYmmdd (E.g. 20210201) |
min_duration | number | Only return the results of played_duration greater than or equal to min_duration seconds (default: 0) |
max_duration | number | Only return the results of played_duration less than or equal to max_duration seconds (default: 3600) |
isrc_country | string | Only return results that match the isrc country code (E.g. DE, FR, IT, US) |
with_false_positive | number | 0: does not return results marked as false positive. (Default) 1: returns results marked false positive. |
Headers
Name | Type | Description |
---|---|---|
Authorization | string | Bearer token |
Accept | string | application/json |
Get real-time results of channel monitoring
GET
https://api-v2.acrcloud.com/api/bm-bd-projects/:pid/channels/:channel_id/realtime_results
Path Parameters
Name | Type | Description |
---|---|---|
pid | number | The project id |
channel_id | number | The channel id |
Headers
Name | Type | Description |
---|---|---|
Authorization | string | Bearer token |
Accept | string | application/json |
The following is a sample script that displays the results in real-time
Getting results not recognized but detected as music. (Note: This API is only available for channels with music detection enabled)
GET
https://api-v2.acrcloud.com/api/bm-bd-projects/:pid/channels/:channel_id/unknown_results
Path Parameters
Name | Type | Description |
---|---|---|
pid* | Number | The project id |
channel_id* | Number | channel_id |
Query Parameters
Name | Type | Description |
---|---|---|
date* | String | Get all the results on this date. The format is YYYYmmdd (E.g. 20210201) |
min_duration | Number | Only return the results of played_duration greater than or equal to min_duration seconds (default: 0) |
max_duration | Number | Only return the results of played_duration less than or equal to max_duration seconds (default: 3600) |
Headers
Name | Type | Description |
---|---|---|
Authorization* | String | Bearer token |
Accept* | String | application/json |
Last updated