Stations not included anymore in User Recommendations

I fetch user recommendations using the dedicated endpoint:

var requestURLComponents = URLComponents()
requestURLComponents.scheme = "https"
requestURLComponents.host = "api.music.apple.com"
requestURLComponents.path = "/v1/me/recommendations"
            
guard let url = requestURLComponents.url else { return }
let request = MusicDataRequest(urlRequest: URLRequest(url: url))
let response = try await request.response()

Personal recommended stations (user station and "... and similar artists") were included in the result until a few weeks ago, and now I can't see them anymore. Is there a way to include the recommended stations again?