Spotify API Bridge
Indices
1. get album data
Endpoint:
Method: POST
Type: RAW
URL: https://monito.website/controller/v2/webhook/spotify/getAlbum
Headers:
Key |
Value |
Description |
x-api-key |
12345678 |
|
Body:
{
"uri": "spotify:album:3DaF23bfsiWlqR6T5lqq9b"
}
2. get album tracks
Endpoint:
Method: POST
Type: RAW
URL: https://monito.website/controller/v2/webhook/spotify/getAlbumTracks
Headers:
Key |
Value |
Description |
x-api-key |
12345678 |
|
Body:
{
"uri": "spotify:album:3DaF23bfsiWlqR6T5lqq9b"
}
3. get albums data
Endpoint:
Method: POST
Type: RAW
URL: https://monito.website/controller/v2/webhook/spotify/getAlbums
Headers:
Key |
Value |
Description |
x-api-key |
12345678 |
|
Body:
{
"albumsUris": ["spotify:album:3DaF23bfsiWlqR6T5lqq9b","spotify:album:0tgCzdxlaRL3X0wxBpSKy4"]
}
4. get albums tracks
Endpoint:
Method: POST
Type: RAW
URL: https://monito.website/controller/v2/webhook/spotify/getAlbumsTracks
Headers:
Key |
Value |
Description |
x-api-key |
12345678 |
|
Body:
{
"albumsUris": ["spotify:album:3DaF23bfsiWlqR6T5lqq9b","spotify:album:0tgCzdxlaRL3X0wxBpSKy4"]
}
5. get track audio analysis
Endpoint:
Method: POST
Type: RAW
URL: https://monito.website/controller/v2/webhook/spotify/getAudioAnalysisForTrack
Headers:
Key |
Value |
Description |
x-api-key |
12345678 |
|
Body:
{
"uri": "spotify:track:3fVtTWBglCCrWh5siXWTrd"
}
6. get track audio features
Endpoint:
Method: POST
Type: RAW
URL: https://monito.website/controller/v2/webhook/spotify/getAudioFeaturesForTrack
Headers:
Key |
Value |
Description |
x-api-key |
12345678 |
|
Body:
{
"uri": "spotify:track:3fVtTWBglCCrWh5siXWTrd"
}
7. get track data
Endpoint:
Method: POST
Type: RAW
URL: https://monito.website/controller/v2/webhook/spotify/getTrack
Headers:
Key |
Value |
Description |
x-api-key |
12345678 |
|
Body:
{
"uri": "spotify:track:3fVtTWBglCCrWh5siXWTrd"
}
8. get tracks audio analysis
Endpoint:
Method: POST
Type: RAW
URL: https://monito.website/controller/v2/webhook/spotify/getAudioAnalysisForTracks
Headers:
Key |
Value |
Description |
x-api-key |
12345678 |
|
Body:
{
"tracksUris": ["spotify:track:3fVtTWBglCCrWh5siXWTrd", "spotify:track:0ozX6sHcnVJrZh8c9PUCF2"]
}
9. get tracks audio features
Endpoint:
Method: POST
Type: RAW
URL: https://monito.website/controller/v2/webhook/spotify/getAudioFeaturesForTracks
Headers:
Key |
Value |
Description |
x-api-key |
12345678 |
|
Body:
{
"tracksUris": ["spotify:track:3fVtTWBglCCrWh5siXWTrd", "spotify:track:0ozX6sHcnVJrZh8c9PUCF2"]
}
10. get tracks data
Endpoint:
Method: POST
Type: RAW
URL: https://monito.website/controller/v2/webhook/spotify/getTracks
Headers:
Key |
Value |
Description |
x-api-key |
12345678 |
|
Body:
{
"tracksUris": ["spotify:track:3fVtTWBglCCrWh5siXWTrd", "spotify:track:0ozX6sHcnVJrZh8c9PUCF2"]
}
11. get user playlists
Endpoint:
Method: POST
Type: RAW
URL: https://monito.website/controller/v2/webhook/spotify/getUserPlaylists
Headers:
Key |
Value |
Description |
x-api-key |
12345678 |
|
Body:
{
"userUri": "spotify:user:11oxogowtluq6ispny1q1f34u"
}
Back to top