getAlbumTracks
Retrieve tracks from a Spotify album using album ID. Supports pagination with limit and offset for efficient track listing.
Instructions
Get tracks from a specific album with pagination support
Input Schema
Name | Required | Description | Default |
---|---|---|---|
albumId | Yes | The Spotify ID of the album | |
limit | No | Maximum number of tracks to return (1-50) | |
offset | No | Offset for pagination (0-based index) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"albumId": {
"description": "The Spotify ID of the album",
"type": "string"
},
"limit": {
"description": "Maximum number of tracks to return (1-50)",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"offset": {
"description": "Offset for pagination (0-based index)",
"minimum": 0,
"type": "number"
}
},
"required": [
"albumId"
],
"type": "object"
}