Announcements

Help Wizard

Step 1

NEXT STEP

FAQs

Please see below the most popular frequently asked questions.

Loading article...

Loading faqs...

VIEW ALL

Ongoing Issues

Please see below the current ongoing issues which are under investigation.

Loading issue...

Loading ongoing issues...

VIEW ALL

Missing Recent Releases in Spotify API browse/new-releases Endpoint

Missing Recent Releases in Spotify API browse/new-releases Endpoint

Hello,

I'm developing a Flutter application that shows Spotify's new releases. I've encountered an issue where some new songs visible in the Spotify web player are not accessible through the API.

**Current Issue:**
- Songs marked as "released 2 days ago" are visible in the web player
- The same songs are not returned by the `browse/new-releases` endpoint
- Tested with multiple markets (TR, US, GB)
- Also checked featured playlists

**Attempted Solutions:**
1. Implemented pagination to fetch more results
2. Fetched data from different markets
3. Attempted to get new releases from featured playlists

**Current Code:**
```dart

Future<List<Album>> getNewReleases({int limit = 50}) async {
// browse/new-releases endpoint
final response = await http.get(
Uri.parse('$_baseUrl/browse/new-releases').replace(queryParameters: {
'country': 'TR',
'limit': '50',
'offset': '0',
}),
headers: {'Authorization': 'Bearer $token'},
);
}
Reply
0 Replies

Suggested posts

Let's introduce ourselves!

Hey there you,   Yeah, you! 😁   Welcome - we're glad you joined the Spotify Community!   While you here, let's have a fun game and get…

ModeratorStaff / Moderator/ 4 years ago  in Social & Random