action spotify_get_recently_played { label: "Get Recently Played Tracks\n" description: "Get tracks from the current user's recently played tracks.\n_**Note**: Currently doesn't support podcast episodes._\n" provider: spotify method: GET path: "/me/player/recently-played" encoding: json input: { type: "object" properties: { after: { type: "integer" description: "A Unix timestamp in milliseconds. Returns all items\nafter (but not including) this cursor position. If `after` is specified, `before`\nmust not be specified.\n" } before: { type: "integer" description: "A Unix timestamp in milliseconds. Returns all items\nbefore (but not including) this cursor position. If `before` is specified,\n`after` must not be specified.\n" } limit: { type: "integer" description: "The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.\n" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }