Get Voting of a Space
GET
http
https://api.atomic.radio/spaces/:spaceId/voting
https://api.atomic.radio/spaces/:spaceId/voting
Returns a voting object for a given space ID.
Voting Structure
Field | Type | Description |
---|---|---|
id | String | The id of the space |
tracks | VotingTrack[] | 10 available Voting Tracks |
startedAt | Date | When the voting started |
closingAt | Date | When the voting will close |
endingAt | Date | When the voting will be restarted |
closed | Boolean | If the voting is closed |
Voting Track Structure
Field | Type | Description |
---|---|---|
id | String | The id of the track |
votes | Number | Total upvotes for this track |
voted | Boolean | Voted for this track |
artist | String | The artist of the track |
title | String | The title of the track |
duration | Number | The duration of the track in seconds |
artwork | String | The artwork of the track as a url |
preview? | String | The audio preview of the track as a url |
preview_video? | String | The video preview of the track as a url |
Example Voting Structure
json
{
"id": "one",
"tracks": [
{
"id": "6949014817592053760",
"votes": 0,
"voted": false,
"artist": "Noel Holler & TEN TONNE SKELETON feat. ENDLING",
"title": "Out Of Fire",
"duration": 156,
"artwork": "https://assets.atomic.radio/tracks/artworks/6949014817592053760.jpg",
"preview": "https://assets.atomic.radio/tracks/previews/6949014817592053760.aac",
"preview_video": "https://assets.atomic.radio/tracks/previews/6949014817592053760.mp4"
},
// ...
],
"startedAt": "2022-12-30T23:00:19.840Z",
"closingAt": "2022-12-31T18:15:00.840Z",
"endingAt": "2022-12-31T23:00:00.840Z",
"closed": false
}
{
"id": "one",
"tracks": [
{
"id": "6949014817592053760",
"votes": 0,
"voted": false,
"artist": "Noel Holler & TEN TONNE SKELETON feat. ENDLING",
"title": "Out Of Fire",
"duration": 156,
"artwork": "https://assets.atomic.radio/tracks/artworks/6949014817592053760.jpg",
"preview": "https://assets.atomic.radio/tracks/previews/6949014817592053760.aac",
"preview_video": "https://assets.atomic.radio/tracks/previews/6949014817592053760.mp4"
},
// ...
],
"startedAt": "2022-12-30T23:00:19.840Z",
"closingAt": "2022-12-31T18:15:00.840Z",
"endingAt": "2022-12-31T23:00:00.840Z",
"closed": false
}