action spotify_get_track { label: "Get Track\n" description: "Get Spotify catalog information for a single track identified by its\nunique Spotify ID.\n" provider: spotify method: GET path: "/tracks/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" description: "The [Spotify ID](/documentation/web-api/#spotify-uris-and-ids)\nfor the track.\n" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }