Python, RapidAPI Terms

APIs and tooling like Jupyter docs allows many opportunities in fields like Data Science. As more and more developers use APIs, they build standards in how you setup a client, send requests and receive information...

Covid19 RapidAPI Example

To begin the API journey. You need to find an API provider.

  • RapidAPI is a great option. You must setup and account, but there are many free options.
  • Goto this page for starters, the Corona virus World and India data- Under Code Snippets pick Python - Requests

RapidAPI, you will select Python Requests type of code to work with you Notebook.

  • The url is the endpoint to which the API is directed
  • The headers is a dictionary data structure to send special messaging to the endpoint
  • The requests.request() python function is used to send a request and retrieve their responses
  • The response variable receives result of of the request in JSON text

Next step, is to format the response according to your data science needs

"""
Requests is a HTTP library for the Python programming language. 
The goal of the project is to make HTTP requests simpler and more human-friendly. 
"""
import requests

"""
RapidAPI is the world's largest API Marketplace. 
Developers use Rapid API to discover and connect to thousands of APIs. 
"""
url = "https://corona-virus-world-and-india-data.p.rapidapi.com/api"
headers = {
    'x-rapidapi-key': "dec069b877msh0d9d0827664078cp1a18fajsn2afac35ae063",
    'x-rapidapi-host': "corona-virus-world-and-india-data.p.rapidapi.com"
}

# Request Covid Data
response = requests.request("GET", url, headers=headers)
# print(response.text)  # uncomment this line to see raw data

# This code looks for "world data"
print("World Totals")
world = response.json().get('world_total')  # turn response to json() so we can extract "world_total"
for key, value in world.items():  # this finds key, value pairs in country
    print(key, value)

print()

# This code looks for USA in "countries_stats"
print("Country Totals")
countries = response.json().get('countries_stat')
for country in countries:  # countries is a list
    if country["country_name"] == "USA":  # this filters for USA
        for key, value in country.items():  # this finds key, value pairs in country
            print(key, value)
World Totals
total_cases 509,268,964
new_cases 204,268
total_deaths 6,242,509
new_deaths 630
total_recovered 461,827,849
active_cases 41,198,606
serious_critical 42,510
total_cases_per_1m_population 65,334
deaths_per_1m_population 800.9
statistic_taken_at 2022-04-24 11:18:01

Country Totals
country_name USA
cases 82,649,779
deaths 1,018,316
region 
total_recovered 80,434,925
new_deaths 0
new_cases 0
serious_critical 1,465
active_cases 1,196,538
total_cases_per_1m_population 247,080
deaths_per_1m_population 3,044
total_tests 1,000,275,726
tests_per_1m_population 2,990,303

Digital Coin Example

This example provides digital coin feedback (ie Bitcoin). It include popularity, price, symbols, etc.

  • A valid X-RapidAPI-Key is required. Look in code for link to RapidAPI page
  • Read all comments in code for further guidance
# RapidAPI page https://rapidapi.com/Coinranking/api/coinranking1/

# Begin Rapid API Code
import requests

url = "https://coinranking1.p.rapidapi.com/coins"
querystring = {"referenceCurrencyUuid":"yhjMzLPhuIDl","timePeriod":"24h","tiers[0]":"1","orderBy":"marketCap","orderDirection":"desc","limit":"50","offset":"0"}
headers = {
	"X-RapidAPI-Key": "jcmbea0fa2ff5msh7f14bf69be38ca6p175482jsn6c4988114560",  # place your key here
	"X-RapidAPI-Host": "coinranking1.p.rapidapi.com"
}

response = requests.request("GET", url, headers=headers, params=querystring)
print(response.text)
# End Rapid API Code
json = response.json()  # convert response to python json object

# Observe data from an API.  This is how data transports over the internet in a "JSON" text form
# - The JSON "text" is formed in dictionary {} and list [] divisions
# - To read the result, Data Scientist of  Developer converts JSON into human readable form
# - Review the first line, look for the keys --  "status" and "data"
{"message":"You are not subscribed to this API."}

Formatting Digital Coin example

JSON text transferred from the API in the previous cell was converted to a Python Dictionary called json. The "coins" in the dictionary contain a list of the most relevant data. Look at the code and comments to see how the original text is turned into something understandable. Additionally, there are error check to make sure we are starting the code with the expectation that the API was run correctly.

"""
This cell is dependent on valid run of API above.
- try and except code is making sure "json" was properly run above
- inside second try is code that is used to process Coin API data

Note.  Run this cell repeatedly to format data without re-activating API
"""

try:
    print("JSON data is Python type: " + str(type(json)))
    try:
        # Extracting Coins JSON status, if the API worked
        status = json.get('status')
        print("API status: " + status)
        print()
        
        # Extracting Coins JSON data, data about the coins
        data = json.get('data')
        
        # Procedural abstraction of Print code for coins
        def print_coin(c):
            print(c["symbol"], c["price"])
            print("Icon Url: " + c["iconUrl"])
            print("Rank Url: " + c["coinrankingUrl"])

        # Coins data was observed to be a list
        for coin in data['coins']:
            print_coin(coin)
            print()
            
    except:
        print("Did you insert a valid key in X-RapidAPI-Key of API cell above?")
        print(json)
except:
    print("This cell is dependent on running API call in cell above!")
JSON data is Python type: <class 'dict'>
Did you insert a valid key in X-RapidAPI-Key of API cell above?
{'message': 'You are not subscribed to this API.'}

Go deeper into APIs

Web Development vs Jupyter Notebook. A notebook is certainly a great place to start. But, for your end of Trimester project we want you to build the skill to reference and use APIs within your Project. Here are some resources to get you started with this journey.

Hacks

Find and use an API as part of your project. An API and a little coding logic will be a big step toward getting meaningful data for a project. There are many API providers, find one that might work for your project to complete this hack. When picking an API you are looking for something that will work with either JavaScript Fetch or Python Request. Here are some samples, these are not qualified in any way.

Show API and format results in either Web Page or Jupyter Notebook. Ultimately, I will expect that we do APIs in backend (Python/Flask). However, for this Hack you can pick your preference. We will discuss pros and cons in next API tech talk.

import requests

url = "https://spotify81.p.rapidapi.com/artist_singles"

querystring = {"id":"2w9zwq3AktTeYYMuhMjju8"}

headers = {
	"X-RapidAPI-Key": "4c8dd33eeemsh48b5d494c156df1p16ffebjsna986db2d8a91",
	"X-RapidAPI-Host": "spotify81.p.rapidapi.com"
}

response = requests.request("GET", url, headers=headers, params=querystring)

print(response.json())
{'data': {'artist': {'discography': {'singles': {'totalCount': 212, 'items': [{'releases': {'items': [{'id': '70GSvRwILjynWHs5qAcDPY', 'uri': 'spotify:album:70GSvRwILjynWHs5qAcDPY', 'name': 'Wherever You Go (with Reynmen)', 'type': 'SINGLE', 'date': {'year': 2022, 'isoString': '2022-08-26T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02e59b6b12320b639a72c0f360', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851e59b6b12320b639a72c0f360', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273e59b6b12320b639a72c0f360', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'xEgm5Y-tRxKu12DUvWy22A', 'shareUrl': 'https://open.spotify.com/album/70GSvRwILjynWHs5qAcDPY?si=xEgm5Y-tRxKu12DUvWy22A'}, 'tracks': {'totalCount': 2}}]}}, {'releases': {'items': [{'id': '33zJ4SIK5Tf8YXlYSsvelT', 'uri': 'spotify:album:33zJ4SIK5Tf8YXlYSsvelT', 'name': 'Wherever You Go', 'type': 'SINGLE', 'date': {'year': 2022, 'isoString': '2022-08-26T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02eefcba3ad842daa6f87a6896', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851eefcba3ad842daa6f87a6896', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273eefcba3ad842daa6f87a6896', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': '4ZoxyDzfTP2E9q0K_kOoTg', 'shareUrl': 'https://open.spotify.com/album/33zJ4SIK5Tf8YXlYSsvelT?si=4ZoxyDzfTP2E9q0K_kOoTg'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '63oBgdhy76nv9I1LLhZQ3b', 'uri': 'spotify:album:63oBgdhy76nv9I1LLhZQ3b', 'name': 'Wherever You Go (Mert Hakan Remix)', 'type': 'SINGLE', 'date': {'year': 2022, 'isoString': '2022-08-23T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02259e22b2b451d91d2158dcc5', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851259e22b2b451d91d2158dcc5', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273259e22b2b451d91d2158dcc5', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'y1UpLRmoTbqfy50Qj-OTug', 'shareUrl': 'https://open.spotify.com/album/63oBgdhy76nv9I1LLhZQ3b?si=y1UpLRmoTbqfy50Qj-OTug'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '7jeN8JERMZOCQfn0ETUnYY', 'uri': 'spotify:album:7jeN8JERMZOCQfn0ETUnYY', 'name': 'Magical Love (Maesic Remix)', 'type': 'SINGLE', 'date': {'year': 2022, 'isoString': '2022-06-18T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e022b961fe8d7fde37d76563247', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048512b961fe8d7fde37d76563247', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2732b961fe8d7fde37d76563247', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'cV7qkpBjST27qZTAoVo8qQ', 'shareUrl': 'https://open.spotify.com/album/7jeN8JERMZOCQfn0ETUnYY?si=cV7qkpBjST27qZTAoVo8qQ'}, 'tracks': {'totalCount': 3}}]}}, {'releases': {'items': [{'id': '3hqE43sWPNyUZZut3VNgMU', 'uri': 'spotify:album:3hqE43sWPNyUZZut3VNgMU', 'name': 'Magical Love', 'type': 'SINGLE', 'date': {'year': 2022, 'isoString': '2022-06-17T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02d8216408dc5ecb0be72e9730', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851d8216408dc5ecb0be72e9730', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273d8216408dc5ecb0be72e9730', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'ripDkUWBSjyxcqWv7gjj5A', 'shareUrl': 'https://open.spotify.com/album/3hqE43sWPNyUZZut3VNgMU?si=ripDkUWBSjyxcqWv7gjj5A'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '1UbFg8AzX8omvIxlQEMKUO', 'uri': 'spotify:album:1UbFg8AzX8omvIxlQEMKUO', 'name': 'Talk', 'type': 'SINGLE', 'date': {'year': 2022, 'isoString': '2022-06-03T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02dc487236aeef607d7b172d73', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851dc487236aeef607d7b172d73', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273dc487236aeef607d7b172d73', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'Wo_9XgdITP68zBoK9l-CSA', 'shareUrl': 'https://open.spotify.com/album/1UbFg8AzX8omvIxlQEMKUO?si=Wo_9XgdITP68zBoK9l-CSA'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '4rbCiSzxFxubcovAjLsdVv', 'uri': 'spotify:album:4rbCiSzxFxubcovAjLsdVv', 'name': 'Tare', 'type': 'SINGLE', 'date': {'year': 2022, 'isoString': '2022-04-05T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0255c99de91c07edf0092ebc4d', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485155c99de91c07edf0092ebc4d', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27355c99de91c07edf0092ebc4d', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'qWrscdjjTkm51XfHMnghDQ', 'shareUrl': 'https://open.spotify.com/album/4rbCiSzxFxubcovAjLsdVv?si=qWrscdjjTkm51XfHMnghDQ'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '7DDqCPpZjHqLK3fuD1JaD6', 'uri': 'spotify:album:7DDqCPpZjHqLK3fuD1JaD6', 'name': 'Tare (Albwho Remix)', 'type': 'SINGLE', 'date': {'year': 2022, 'isoString': '2022-04-01T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02ef264c213f1f426953bf4a57', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851ef264c213f1f426953bf4a57', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273ef264c213f1f426953bf4a57', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'YHHDbElIT6CIhzihImVZLQ', 'shareUrl': 'https://open.spotify.com/album/7DDqCPpZjHqLK3fuD1JaD6?si=YHHDbElIT6CIhzihImVZLQ'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '49suZMTVKKsLNX34EqQ7mc', 'uri': 'spotify:album:49suZMTVKKsLNX34EqQ7mc', 'name': 'Déjà Vu', 'type': 'SINGLE', 'date': {'year': 2022, 'isoString': '2022-03-25T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e026bc9d2d0e42cddd1c6977586', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048516bc9d2d0e42cddd1c6977586', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2736bc9d2d0e42cddd1c6977586', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'McRpYgKTTVS8qo3gWH4ePQ', 'shareUrl': 'https://open.spotify.com/album/49suZMTVKKsLNX34EqQ7mc?si=McRpYgKTTVS8qo3gWH4ePQ'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '4MCOi8ZgIluCg50QR2iU1w', 'uri': 'spotify:album:4MCOi8ZgIluCg50QR2iU1w', 'name': 'UP (Kaluma Remix)', 'type': 'SINGLE', 'date': {'year': 2022, 'isoString': '2022-03-10T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e024b30c10e877142918872ad2f', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048514b30c10e877142918872ad2f', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2734b30c10e877142918872ad2f', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'YiL60alATLidyHqe6KwUYg', 'shareUrl': 'https://open.spotify.com/album/4MCOi8ZgIluCg50QR2iU1w?si=YiL60alATLidyHqe6KwUYg'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '4gUM4llwsErkQQ1VqBvE2D', 'uri': 'spotify:album:4gUM4llwsErkQQ1VqBvE2D', 'name': 'UP (Arem Ozguc & Arman Aydin Remix)', 'type': 'SINGLE', 'date': {'year': 2022, 'isoString': '2022-02-28T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e022c9c3a51bea7bc70a92a5c94', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048512c9c3a51bea7bc70a92a5c94', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2732c9c3a51bea7bc70a92a5c94', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'B3hEuSi6QzCvL5sWBgB2hg', 'shareUrl': 'https://open.spotify.com/album/4gUM4llwsErkQQ1VqBvE2D?si=B3hEuSi6QzCvL5sWBgB2hg'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '49D6ut4LdJCBD90wRWzfe6', 'uri': 'spotify:album:49D6ut4LdJCBD90wRWzfe6', 'name': 'Lalele', 'type': 'SINGLE', 'date': {'year': 2022, 'isoString': '2022-01-20T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e021f43d9d7588ec1c832b8f2dc', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048511f43d9d7588ec1c832b8f2dc', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2731f43d9d7588ec1c832b8f2dc', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'SiXFKqVASvqjUaPTgww1Og', 'shareUrl': 'https://open.spotify.com/album/49D6ut4LdJCBD90wRWzfe6?si=SiXFKqVASvqjUaPTgww1Og'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '2jA1exLaHCcpHtDrGLKTmy', 'uri': 'spotify:album:2jA1exLaHCcpHtDrGLKTmy', 'name': 'UP', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-12-17T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e027bd254131ac1f8678448d076', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048517bd254131ac1f8678448d076', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2737bd254131ac1f8678448d076', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'SRSkRodtRjC_G9rb_V3wAA', 'shareUrl': 'https://open.spotify.com/album/2jA1exLaHCcpHtDrGLKTmy?si=SRSkRodtRjC_G9rb_V3wAA'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '6uvP8hlbI9X3RleKNVmBzT', 'uri': 'spotify:album:6uvP8hlbI9X3RleKNVmBzT', 'name': 'UP (Robert Cristian Remix)', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-12-03T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e021271f5f16702f3516f86579d', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048511271f5f16702f3516f86579d', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2731271f5f16702f3516f86579d', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'W0dURYhvT22sPLT9xU8W6w', 'shareUrl': 'https://open.spotify.com/album/6uvP8hlbI9X3RleKNVmBzT?si=W0dURYhvT22sPLT9xU8W6w'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '5kjggiiZEcRzFvQ4rowAsQ', 'uri': 'spotify:album:5kjggiiZEcRzFvQ4rowAsQ', 'name': 'De Dragul Tău', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-11-26T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02da7c4e91509943b3c7cf8ef4', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851da7c4e91509943b3c7cf8ef4', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273da7c4e91509943b3c7cf8ef4', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'nt4LBx6iS1apv0eTku5qfA', 'shareUrl': 'https://open.spotify.com/album/5kjggiiZEcRzFvQ4rowAsQ?si=nt4LBx6iS1apv0eTku5qfA'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '21x0bCve7UJ7ZAapjt8GFz', 'uri': 'spotify:album:21x0bCve7UJ7ZAapjt8GFz', 'name': 'UP', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-10-29T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0265f27da14d572556a8a59755', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485165f27da14d572556a8a59755', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27365f27da14d572556a8a59755', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'Je_kaaa2RwShrTjTq8ebYw', 'shareUrl': 'https://open.spotify.com/album/21x0bCve7UJ7ZAapjt8GFz?si=Je_kaaa2RwShrTjTq8ebYw'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '3wBRVC1SMfIEdsr9thFSYJ', 'uri': 'spotify:album:3wBRVC1SMfIEdsr9thFSYJ', 'name': 'UP (Vadim Adamov & Hardphol Remix)', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-10-28T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0200296e006391b562e8c70563', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485100296e006391b562e8c70563', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27300296e006391b562e8c70563', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'NPwHfm1iTdefdWJm-au6Rg', 'shareUrl': 'https://open.spotify.com/album/3wBRVC1SMfIEdsr9thFSYJ?si=NPwHfm1iTdefdWJm-au6Rg'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '605jn7Lsj6RD4ovYCsnrxe', 'uri': 'spotify:album:605jn7Lsj6RD4ovYCsnrxe', 'name': 'UP (Mert Hakan & Onur Betin Remix)', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-10-28T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e023a3334b5c3ac49b938312f03', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048513a3334b5c3ac49b938312f03', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2733a3334b5c3ac49b938312f03', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'YPTOyQmFTTWKLa_chgz4RA', 'shareUrl': 'https://open.spotify.com/album/605jn7Lsj6RD4ovYCsnrxe?si=YPTOyQmFTTWKLa_chgz4RA'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '3QJqG1fLaNGsgjVUroIPCT', 'uri': 'spotify:album:3QJqG1fLaNGsgjVUroIPCT', 'name': 'UP (Filatov & Karas Remix)', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-10-28T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02d73086d4cbe065734d124185', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851d73086d4cbe065734d124185', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273d73086d4cbe065734d124185', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'WKeWmTh9T9aHUgmR-TAGXQ', 'shareUrl': 'https://open.spotify.com/album/3QJqG1fLaNGsgjVUroIPCT?si=WKeWmTh9T9aHUgmR-TAGXQ'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '57NJ9mlC0mPtXJAc6T9Q2g', 'uri': 'spotify:album:57NJ9mlC0mPtXJAc6T9Q2g', 'name': 'UP (Bzars Remix)', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-10-28T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0237f1c2da634da62a84370a09', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485137f1c2da634da62a84370a09', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27337f1c2da634da62a84370a09', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'N-OjOytoThip6lhXrk-mqQ', 'shareUrl': 'https://open.spotify.com/album/57NJ9mlC0mPtXJAc6T9Q2g?si=N-OjOytoThip6lhXrk-mqQ'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '53kblUkYfsJ5bYAb3yDO0s', 'uri': 'spotify:album:53kblUkYfsJ5bYAb3yDO0s', 'name': 'UP (Barlas & Mert Remix)', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-10-28T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e022af676a3bccbfe4a9cf0408d', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048512af676a3bccbfe4a9cf0408d', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2732af676a3bccbfe4a9cf0408d', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'Pbvj7KBzQRargoRra56xgA', 'shareUrl': 'https://open.spotify.com/album/53kblUkYfsJ5bYAb3yDO0s?si=Pbvj7KBzQRargoRra56xgA'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '7uAgbC70TWlSaIs8SzmDwU', 'uri': 'spotify:album:7uAgbC70TWlSaIs8SzmDwU', 'name': 'UP', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-10-27T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02a20f608f337d3e30f5a2e665', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851a20f608f337d3e30f5a2e665', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273a20f608f337d3e30f5a2e665', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'RujKvwdnQESxfIZKRFNgAA', 'shareUrl': 'https://open.spotify.com/album/7uAgbC70TWlSaIs8SzmDwU?si=RujKvwdnQESxfIZKRFNgAA'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '46s4mpLHOEpUAcejvR7IpA', 'uri': 'spotify:album:46s4mpLHOEpUAcejvR7IpA', 'name': 'UP (Casian Remix)', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-10-25T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e027286abd5a5eeb280ab512719', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048517286abd5a5eeb280ab512719', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2737286abd5a5eeb280ab512719', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': '9fFZ9INSTduW37pAd04KuA', 'shareUrl': 'https://open.spotify.com/album/46s4mpLHOEpUAcejvR7IpA?si=9fFZ9INSTduW37pAd04KuA'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '75732AF41SF4yp6Nrtjgdx', 'uri': 'spotify:album:75732AF41SF4yp6Nrtjgdx', 'name': 'UP (Serdar Kirgiz Remix)', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-10-22T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02bade8800558bb58adb1d8b5f', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851bade8800558bb58adb1d8b5f', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273bade8800558bb58adb1d8b5f', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'y1V6NmnjR0Cqg9Awd0ubMw', 'shareUrl': 'https://open.spotify.com/album/75732AF41SF4yp6Nrtjgdx?si=y1V6NmnjR0Cqg9Awd0ubMw'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '68t5XuKtgGbDZAr0SYylJg', 'uri': 'spotify:album:68t5XuKtgGbDZAr0SYylJg', 'name': 'Like That', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-09-30T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e026254d49df8517a5b5cab9505', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048516254d49df8517a5b5cab9505', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2736254d49df8517a5b5cab9505', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'bW_WW8jfQTak919JXftoiw', 'shareUrl': 'https://open.spotify.com/album/68t5XuKtgGbDZAr0SYylJg?si=bW_WW8jfQTak919JXftoiw'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '5JNDuFuvWhwnLPxpP2Cfzv', 'uri': 'spotify:album:5JNDuFuvWhwnLPxpP2Cfzv', 'name': 'Pretty Please', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-09-24T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02eaa5e68d857694e4ddb0c596', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851eaa5e68d857694e4ddb0c596', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273eaa5e68d857694e4ddb0c596', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'tHzO29D_SXax38dYbPw5Xw', 'shareUrl': 'https://open.spotify.com/album/5JNDuFuvWhwnLPxpP2Cfzv?si=tHzO29D_SXax38dYbPw5Xw'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '1HJj1jSYQlHcIeeOgJVjx0', 'uri': 'spotify:album:1HJj1jSYQlHcIeeOgJVjx0', 'name': 'Party', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-09-22T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02ba6a65a07d32d3e214af76cc', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851ba6a65a07d32d3e214af76cc', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273ba6a65a07d32d3e214af76cc', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'NCFUOrYBT66Leohpg-1GVA', 'shareUrl': 'https://open.spotify.com/album/1HJj1jSYQlHcIeeOgJVjx0?si=NCFUOrYBT66Leohpg-1GVA'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '1kAnhTZUVAXIgmspTcSxqj', 'uri': 'spotify:album:1kAnhTZUVAXIgmspTcSxqj', 'name': 'Aici', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-08-13T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02ef6451a062a530d3d2fbf778', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851ef6451a062a530d3d2fbf778', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273ef6451a062a530d3d2fbf778', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'IWqQE5crRjyUN46sbJE9bA', 'shareUrl': 'https://open.spotify.com/album/1kAnhTZUVAXIgmspTcSxqj?si=IWqQE5crRjyUN46sbJE9bA'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '0fprmuiWAU7cCx64jG58HI', 'uri': 'spotify:album:0fprmuiWAU7cCx64jG58HI', 'name': 'Papa', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-07-23T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e024cf5144feb940b6e5ddcf24f', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048514cf5144feb940b6e5ddcf24f', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2734cf5144feb940b6e5ddcf24f', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'pdefFNqKTyiQ1gOdLjDCoQ', 'shareUrl': 'https://open.spotify.com/album/0fprmuiWAU7cCx64jG58HI?si=pdefFNqKTyiQ1gOdLjDCoQ'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '0kCQJStitU54MYB12k7HZU', 'uri': 'spotify:album:0kCQJStitU54MYB12k7HZU', 'name': 'Hot (Sound Rush Remix)', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-07-13T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e021ba87102ad18c0e87ef56ff8', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048511ba87102ad18c0e87ef56ff8', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2731ba87102ad18c0e87ef56ff8', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'JY0lvDGmQ7-n3xS9nBymLQ', 'shareUrl': 'https://open.spotify.com/album/0kCQJStitU54MYB12k7HZU?si=JY0lvDGmQ7-n3xS9nBymLQ'}, 'tracks': {'totalCount': 2}}]}}, {'releases': {'items': [{'id': '5jkQzh571W8YXJ7phsjg8X', 'uri': 'spotify:album:5jkQzh571W8YXJ7phsjg8X', 'name': "Summer's Not Ready (feat. INNA and Timmy Trumpet)", 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-06-29T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e028cccca21719135292b3c67a3', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048518cccca21719135292b3c67a3', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2738cccca21719135292b3c67a3', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'ZSghGJhQQ26dlkbNaYtOeQ', 'shareUrl': 'https://open.spotify.com/album/5jkQzh571W8YXJ7phsjg8X?si=ZSghGJhQQ26dlkbNaYtOeQ'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '4z8dKsFCqFSUblEvwyIMh6', 'uri': 'spotify:album:4z8dKsFCqFSUblEvwyIMh6', 'name': 'Paris to London', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-06-25T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0202bbe85b5146f9f18501697c', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485102bbe85b5146f9f18501697c', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27302bbe85b5146f9f18501697c', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': '0Ho3cwI3T8ChRvDsQkC2fw', 'shareUrl': 'https://open.spotify.com/album/4z8dKsFCqFSUblEvwyIMh6?si=0Ho3cwI3T8ChRvDsQkC2fw'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '1Dn758WZneVZvqazEK18Zs', 'uri': 'spotify:album:1Dn758WZneVZvqazEK18Zs', 'name': 'Maza', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-06-11T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e027e2fae88294459e096acaf97', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048517e2fae88294459e096acaf97', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2737e2fae88294459e096acaf97', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'tGNO1mWzTTuSYAd0tKLDpg', 'shareUrl': 'https://open.spotify.com/album/1Dn758WZneVZvqazEK18Zs?si=tGNO1mWzTTuSYAd0tKLDpg'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '6WYUXLCkqa2HT8Ble2RPnl', 'uri': 'spotify:album:6WYUXLCkqa2HT8Ble2RPnl', 'name': 'Maza (Robert Cristian Remix)', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-06-04T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02a8a03cf25e11aa040ff38dbb', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851a8a03cf25e11aa040ff38dbb', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273a8a03cf25e11aa040ff38dbb', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'Z3pBzhWrTFWCELVQo2dEeA', 'shareUrl': 'https://open.spotify.com/album/6WYUXLCkqa2HT8Ble2RPnl?si=Z3pBzhWrTFWCELVQo2dEeA'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '3URxAZFfZ4rLYMb0goZJNu', 'uri': 'spotify:album:3URxAZFfZ4rLYMb0goZJNu', 'name': 'Maza (French Version)', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-06-01T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02176fc17fff8a6b468e869eb8', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851176fc17fff8a6b468e869eb8', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273176fc17fff8a6b468e869eb8', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'VRxCCzhyTV6FgfVbTbZ1EQ', 'shareUrl': 'https://open.spotify.com/album/3URxAZFfZ4rLYMb0goZJNu?si=VRxCCzhyTV6FgfVbTbZ1EQ'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '56IMULK7a9IkAkgQE9sNrg', 'uri': 'spotify:album:56IMULK7a9IkAkgQE9sNrg', 'name': 'Maza (US Version)', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-05-28T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e022861cc9d95544297e9ded4a9', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048512861cc9d95544297e9ded4a9', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2732861cc9d95544297e9ded4a9', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'qhJro7NdQ_6D6kDaIJSlLA', 'shareUrl': 'https://open.spotify.com/album/56IMULK7a9IkAkgQE9sNrg?si=qhJro7NdQ_6D6kDaIJSlLA'}, 'tracks': {'totalCount': 3}}, {'id': '4p7iyW0drxwDXiMOWdLac8', 'uri': 'spotify:album:4p7iyW0drxwDXiMOWdLac8', 'name': 'Maza (US Version)', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-06-02T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02c8549cd6223d23367e720e36', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851c8549cd6223d23367e720e36', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273c8549cd6223d23367e720e36', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'gMEgI8jGRzCEMsV_H5j1aA', 'shareUrl': 'https://open.spotify.com/album/4p7iyW0drxwDXiMOWdLac8?si=gMEgI8jGRzCEMsV_H5j1aA'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '7dmob5pZ4DyfhIPdOW2aWG', 'uri': 'spotify:album:7dmob5pZ4DyfhIPdOW2aWG', 'name': 'Maza (Ilkan Günüç Remix)', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-05-28T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0204514813b862e550444e930d', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485104514813b862e550444e930d', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27304514813b862e550444e930d', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'sOOGgmYaTI2IKf7aGDXGjw', 'shareUrl': 'https://open.spotify.com/album/7dmob5pZ4DyfhIPdOW2aWG?si=sOOGgmYaTI2IKf7aGDXGjw'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '4hCmUF3sTmagOYzrRrVCHj', 'uri': 'spotify:album:4hCmUF3sTmagOYzrRrVCHj', 'name': 'Maza (Casian Remix)', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-05-28T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e028fe33d92ca0fefd23bafbe16', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048518fe33d92ca0fefd23bafbe16', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2738fe33d92ca0fefd23bafbe16', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'A-LtPlqiQzSaUIpgxdCSsg', 'shareUrl': 'https://open.spotify.com/album/4hCmUF3sTmagOYzrRrVCHj?si=A-LtPlqiQzSaUIpgxdCSsg'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '5w5UPTvxo2vjCWnP5fbEnc', 'uri': 'spotify:album:5w5UPTvxo2vjCWnP5fbEnc', 'name': 'It Don’t Matter - Spotify Singles', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-05-07T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0260b16fc0b0cc5948f2173511', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485160b16fc0b0cc5948f2173511', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27360b16fc0b0cc5948f2173511', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'bx62UF4zQYufWgO5Xt1q1Q', 'shareUrl': 'https://open.spotify.com/album/5w5UPTvxo2vjCWnP5fbEnc?si=bx62UF4zQYufWgO5Xt1q1Q'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '6cHNuGBDX0h3Pf88quyymV', 'uri': 'spotify:album:6cHNuGBDX0h3Pf88quyymV', 'name': 'It Don’t Matter (Ekanta Jake Remix)', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-05-06T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02264573ea95bea5bb05dad9f4', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851264573ea95bea5bb05dad9f4', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273264573ea95bea5bb05dad9f4', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'AmLt4w7bQqOTAZYihMftQA', 'shareUrl': 'https://open.spotify.com/album/6cHNuGBDX0h3Pf88quyymV?si=AmLt4w7bQqOTAZYihMftQA'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '1ieuMbqWl9HW9PUuMLchfi', 'uri': 'spotify:album:1ieuMbqWl9HW9PUuMLchfi', 'name': 'Oh My God', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-04-29T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e025320b79cf9b66a3831d31b4d', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048515320b79cf9b66a3831d31b4d', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2735320b79cf9b66a3831d31b4d', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'FHEebFjNR8CIeq6IEnZ2xw', 'shareUrl': 'https://open.spotify.com/album/1ieuMbqWl9HW9PUuMLchfi?si=FHEebFjNR8CIeq6IEnZ2xw'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '1uEwqEReGhPtpvSiScNnne', 'uri': 'spotify:album:1uEwqEReGhPtpvSiScNnne', 'name': 'Oh My God (Modern Clvb Remix)', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-04-23T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02e5c211f9b7f3142b1bcea6a7', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851e5c211f9b7f3142b1bcea6a7', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273e5c211f9b7f3142b1bcea6a7', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'aqdPgUplTryfk8aARxUF8Q', 'shareUrl': 'https://open.spotify.com/album/1uEwqEReGhPtpvSiScNnne?si=aqdPgUplTryfk8aARxUF8Q'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '3ZNhk2Hi8XrJqopTvccNxu', 'uri': 'spotify:album:3ZNhk2Hi8XrJqopTvccNxu', 'name': 'Oh My God (Malik Remix)', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-04-23T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02059d7816e0b9ccf7e52f0286', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851059d7816e0b9ccf7e52f0286', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273059d7816e0b9ccf7e52f0286', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'rCWF-O78RFS8u8kjnbJ9Xg', 'shareUrl': 'https://open.spotify.com/album/3ZNhk2Hi8XrJqopTvccNxu?si=rCWF-O78RFS8u8kjnbJ9Xg'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '6R0m2DwJEdJhr7SD0DnF2M', 'uri': 'spotify:album:6R0m2DwJEdJhr7SD0DnF2M', 'name': 'Oh My God (Kean Dysso Remix)', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-04-23T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e021bb377640e905ced6108159d', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048511bb377640e905ced6108159d', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2731bb377640e905ced6108159d', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'SEh3hGuMSlKT7GEYSBQ8tA', 'shareUrl': 'https://open.spotify.com/album/6R0m2DwJEdJhr7SD0DnF2M?si=SEh3hGuMSlKT7GEYSBQ8tA'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '4OCtCoDnUhXDRLejqZ1nIG', 'uri': 'spotify:album:4OCtCoDnUhXDRLejqZ1nIG', 'name': 'Oh My God (DJ Tuncay Albayrak Remix)', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-04-23T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e022c0820ca8a24c4fecf5f626c', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048512c0820ca8a24c4fecf5f626c', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2732c0820ca8a24c4fecf5f626c', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'ZNt6AGgyRkOvr7lANhvgKw', 'shareUrl': 'https://open.spotify.com/album/4OCtCoDnUhXDRLejqZ1nIG?si=ZNt6AGgyRkOvr7lANhvgKw'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '3Ah4WxYwvaCtjYi5mBOGIT', 'uri': 'spotify:album:3Ah4WxYwvaCtjYi5mBOGIT', 'name': 'Oh My God (Cosmo & Skoro Remix)', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-04-23T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02dd4a2ad63d89e8082ca6c4f2', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851dd4a2ad63d89e8082ca6c4f2', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273dd4a2ad63d89e8082ca6c4f2', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'R2-w-K36RC-aYongbWixOQ', 'shareUrl': 'https://open.spotify.com/album/3Ah4WxYwvaCtjYi5mBOGIT?si=R2-w-K36RC-aYongbWixOQ'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '7ygx7VMBScPeuQ7Zro3FKZ', 'uri': 'spotify:album:7ygx7VMBScPeuQ7Zro3FKZ', 'name': 'Cool Me Down', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-04-23T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e028cb894fb74049c50127813a9', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048518cb894fb74049c50127813a9', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2738cb894fb74049c50127813a9', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'bWB3cVKNTU6kC5cOaZMcqA', 'shareUrl': 'https://open.spotify.com/album/7ygx7VMBScPeuQ7Zro3FKZ?si=bWB3cVKNTU6kC5cOaZMcqA'}, 'tracks': {'totalCount': 2}}, {'id': '1JmUG07HKI0ZOgyaUDYWXl', 'uri': 'spotify:album:1JmUG07HKI0ZOgyaUDYWXl', 'name': 'Cool Me Down', 'type': 'SINGLE', 'date': {'year': 2021, 'isoString': '2021-04-23T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02bcd63886aa45a6e167f4f5c6', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851bcd63886aa45a6e167f4f5c6', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273bcd63886aa45a6e167f4f5c6', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': '0FdsziUoSw6w4adCzDggWQ', 'shareUrl': 'https://open.spotify.com/album/1JmUG07HKI0ZOgyaUDYWXl?si=0FdsziUoSw6w4adCzDggWQ'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '5oPp0EN7cEF9CqkWSgaXgy', 'uri': 'spotify:album:5oPp0EN7cEF9CqkWSgaXgy', 'name': 'You and I', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-12-04T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e024f6a1d2c259a78f5420fbc91', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048514f6a1d2c259a78f5420fbc91', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2734f6a1d2c259a78f5420fbc91', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'sgI4dPJYSsiYEdjhT2cgYw', 'shareUrl': 'https://open.spotify.com/album/5oPp0EN7cEF9CqkWSgaXgy?si=sgI4dPJYSsiYEdjhT2cgYw'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '1jX4SAgxVO4iQPfkbLIAQ4', 'uri': 'spotify:album:1jX4SAgxVO4iQPfkbLIAQ4', 'name': 'Till Forever', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-12-04T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0262d99820075a1a12dcd27b56', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485162d99820075a1a12dcd27b56', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27362d99820075a1a12dcd27b56', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'zTNgTbXrQSOP8SuiSRvV1A', 'shareUrl': 'https://open.spotify.com/album/1jX4SAgxVO4iQPfkbLIAQ4?si=zTNgTbXrQSOP8SuiSRvV1A'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '5WdPNBvuCXVPxCIZe1Y6Al', 'uri': 'spotify:album:5WdPNBvuCXVPxCIZe1Y6Al', 'name': 'Thicky', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-12-04T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0212718cfb8419859a5784cd6e', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485112718cfb8419859a5784cd6e', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27312718cfb8419859a5784cd6e', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'uyfcexLmTRqz2BBxppi3vw', 'shareUrl': 'https://open.spotify.com/album/5WdPNBvuCXVPxCIZe1Y6Al?si=uyfcexLmTRqz2BBxppi3vw'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '3KGzVyVMyXW4kICozPsIoT', 'uri': 'spotify:album:3KGzVyVMyXW4kICozPsIoT', 'name': 'Sunset Dinner', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-12-04T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0287bf6955d7e8e9dee358ff5c', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485187bf6955d7e8e9dee358ff5c', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27387bf6955d7e8e9dee358ff5c', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'LN1ftVS_RtWJrpweO262QQ', 'shareUrl': 'https://open.spotify.com/album/3KGzVyVMyXW4kICozPsIoT?si=LN1ftVS_RtWJrpweO262QQ'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '43uvYG2S8XEZz88nHYduIm', 'uri': 'spotify:album:43uvYG2S8XEZz88nHYduIm', 'name': 'One Reason', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-12-04T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0230a6633acf3934de8eac28c2', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485130a6633acf3934de8eac28c2', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27330a6633acf3934de8eac28c2', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'iNDBFOunQEOnVVOvw2nDsg', 'shareUrl': 'https://open.spotify.com/album/43uvYG2S8XEZz88nHYduIm?si=iNDBFOunQEOnVVOvw2nDsg'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '7JSIWQseOBW63TOHaSgUlG', 'uri': 'spotify:album:7JSIWQseOBW63TOHaSgUlG', 'name': 'Maza Jaja', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-12-04T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e022fb02b68ded90c2a6ca543a6', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048512fb02b68ded90c2a6ca543a6', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2732fb02b68ded90c2a6ca543a6', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'RlnPnLalScakeIlizLY7Ng', 'shareUrl': 'https://open.spotify.com/album/7JSIWQseOBW63TOHaSgUlG?si=RlnPnLalScakeIlizLY7Ng'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '6Z2qcCOpbbuYlRQ9l41f44', 'uri': 'spotify:album:6Z2qcCOpbbuYlRQ9l41f44', 'name': 'Heartbreaker', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-12-04T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02680249bd3c8b35e6e499c875', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851680249bd3c8b35e6e499c875', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273680249bd3c8b35e6e499c875', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'Lr6RmnnVQp677ajtclZJ-g', 'shareUrl': 'https://open.spotify.com/album/6Z2qcCOpbbuYlRQ9l41f44?si=Lr6RmnnVQp677ajtclZJ-g'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '7d5H1Jur1Wn816sI8slGtr', 'uri': 'spotify:album:7d5H1Jur1Wn816sI8slGtr', 'name': 'Gucci Balenciaga', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-12-04T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e028b8c56db5cd97ab983558ed9', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048518b8c56db5cd97ab983558ed9', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2738b8c56db5cd97ab983558ed9', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'xYP46YWWRpaV_YExB0ppcA', 'shareUrl': 'https://open.spotify.com/album/7d5H1Jur1Wn816sI8slGtr?si=xYP46YWWRpaV_YExB0ppcA'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '4obDodNku3yyLLZNHkl3c5', 'uri': 'spotify:album:4obDodNku3yyLLZNHkl3c5', 'name': 'Flashbacks', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-12-04T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02e510e84a79bb58b33495dac5', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851e510e84a79bb58b33495dac5', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273e510e84a79bb58b33495dac5', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'IOL19bmqRmeEpQw4tHSmAA', 'shareUrl': 'https://open.spotify.com/album/4obDodNku3yyLLZNHkl3c5?si=IOL19bmqRmeEpQw4tHSmAA'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '61u4QTomAEmsUDZ9k1gj0M', 'uri': 'spotify:album:61u4QTomAEmsUDZ9k1gj0M', 'name': 'Beautiful Lie', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-12-04T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0271ef4d9db9f7bf56cdcfc35e', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485171ef4d9db9f7bf56cdcfc35e', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27371ef4d9db9f7bf56cdcfc35e', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': '9GULx1VgTF-Th-Go54x8nw', 'shareUrl': 'https://open.spotify.com/album/61u4QTomAEmsUDZ9k1gj0M?si=9GULx1VgTF-Th-Go54x8nw'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '5HQTa6FgnuL2b6ePYieay5', 'uri': 'spotify:album:5HQTa6FgnuL2b6ePYieay5', 'name': 'One Reason (Ferki Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-11-27T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02db0da98593acf906da54422a', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851db0da98593acf906da54422a', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273db0da98593acf906da54422a', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'qA3rLFgVRru9JYzxn1sXGg', 'shareUrl': 'https://open.spotify.com/album/5HQTa6FgnuL2b6ePYieay5?si=qA3rLFgVRru9JYzxn1sXGg'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '456OCazIPHxeLG7p830H1U', 'uri': 'spotify:album:456OCazIPHxeLG7p830H1U', 'name': 'Flashbacks (Yalçın Aşan Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-11-27T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02afa2abf1cf77e05a65c4bffe', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851afa2abf1cf77e05a65c4bffe', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273afa2abf1cf77e05a65c4bffe', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'bPeGKEqjRDeDEx8ypMydsw', 'shareUrl': 'https://open.spotify.com/album/456OCazIPHxeLG7p830H1U?si=bPeGKEqjRDeDEx8ypMydsw'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '0lTcqJDMYmahGCOhDYD0Ic', 'uri': 'spotify:album:0lTcqJDMYmahGCOhDYD0Ic', 'name': 'Flashbacks (Syde X Nvrmind Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-11-27T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e025e895e07ecc011e8c771e8ac', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048515e895e07ecc011e8c771e8ac', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2735e895e07ecc011e8c771e8ac', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'UifZMH4wTy2KtUlfmruvBw', 'shareUrl': 'https://open.spotify.com/album/0lTcqJDMYmahGCOhDYD0Ic?si=UifZMH4wTy2KtUlfmruvBw'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '2Oi38eim2ClvkYETmrw1UK', 'uri': 'spotify:album:2Oi38eim2ClvkYETmrw1UK', 'name': 'Flashbacks (Suark Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-11-27T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e023a306fff81e2db65dc0dd13d', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048513a306fff81e2db65dc0dd13d', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2733a306fff81e2db65dc0dd13d', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'alA_tl9YQVq_xqJiviRkNA', 'shareUrl': 'https://open.spotify.com/album/2Oi38eim2ClvkYETmrw1UK?si=alA_tl9YQVq_xqJiviRkNA'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '35VBwoXCW7czQFrpCTplU0', 'uri': 'spotify:album:35VBwoXCW7czQFrpCTplU0', 'name': 'Flashbacks (Robert Cristian Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-11-27T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0248b8c1aba98a239d0caf760b', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485148b8c1aba98a239d0caf760b', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27348b8c1aba98a239d0caf760b', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': '08EVFib6S0mcPHycfERjSw', 'shareUrl': 'https://open.spotify.com/album/35VBwoXCW7czQFrpCTplU0?si=08EVFib6S0mcPHycfERjSw'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '6MN3PW9nrqkxjR5zTIJJlt', 'uri': 'spotify:album:6MN3PW9nrqkxjR5zTIJJlt', 'name': 'Flashbacks (Nomad Digital Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-11-27T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0241ec20fba0ae19061993c21b', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485141ec20fba0ae19061993c21b', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27341ec20fba0ae19061993c21b', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'OtIzVca0QOewvvNi9p_VdQ', 'shareUrl': 'https://open.spotify.com/album/6MN3PW9nrqkxjR5zTIJJlt?si=OtIzVca0QOewvvNi9p_VdQ'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '12ViO6e8nFT39NW7Wegscd', 'uri': 'spotify:album:12ViO6e8nFT39NW7Wegscd', 'name': 'Flashbacks (Maesic Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-11-27T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02a0cfba35d3e360195a6609e5', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851a0cfba35d3e360195a6609e5', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273a0cfba35d3e360195a6609e5', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'PQ5ikUwVQkmaNxrsvNG1VQ', 'shareUrl': 'https://open.spotify.com/album/12ViO6e8nFT39NW7Wegscd?si=PQ5ikUwVQkmaNxrsvNG1VQ'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '5si0w0w3ajLKhYPVvRYyID', 'uri': 'spotify:album:5si0w0w3ajLKhYPVvRYyID', 'name': 'Flashbacks (GLDN, FIVE & LAST 60” Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-11-27T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02783c555717721e3b678b226d', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851783c555717721e3b678b226d', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273783c555717721e3b678b226d', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': '_RlylqMlQhKh3ziS_e8qiQ', 'shareUrl': 'https://open.spotify.com/album/5si0w0w3ajLKhYPVvRYyID?si=_RlylqMlQhKh3ziS_e8qiQ'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '4tZKzfdb4d37iyhsviyI7e', 'uri': 'spotify:album:4tZKzfdb4d37iyhsviyI7e', 'name': 'Flashbacks (Dj Dark & Mentol Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-11-27T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0260db5f1b39044aea05247c93', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485160db5f1b39044aea05247c93', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27360db5f1b39044aea05247c93', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'ohPJzp8STHS02AvV5Hs_HA', 'shareUrl': 'https://open.spotify.com/album/4tZKzfdb4d37iyhsviyI7e?si=ohPJzp8STHS02AvV5Hs_HA'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '13RkwNWWU8WvJ8UiuSjSie', 'uri': 'spotify:album:13RkwNWWU8WvJ8UiuSjSie', 'name': 'Flashbacks (Danny Burg Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-11-27T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0245a4b1d76c7781ea8ef7a4ef', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485145a4b1d76c7781ea8ef7a4ef', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27345a4b1d76c7781ea8ef7a4ef', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': '5xVs6wV4TcuOFuR8EeSS5g', 'shareUrl': 'https://open.spotify.com/album/13RkwNWWU8WvJ8UiuSjSie?si=5xVs6wV4TcuOFuR8EeSS5g'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '1m82TC7XrBx9Uq5FhMQS1Q', 'uri': 'spotify:album:1m82TC7XrBx9Uq5FhMQS1Q', 'name': 'Flashbacks (DJ Tuncay Albayrak Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-11-27T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e026e32336ef5ab966505e3cf74', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048516e32336ef5ab966505e3cf74', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2736e32336ef5ab966505e3cf74', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'o032LpHXT462lsyIwfo4qQ', 'shareUrl': 'https://open.spotify.com/album/1m82TC7XrBx9Uq5FhMQS1Q?si=o032LpHXT462lsyIwfo4qQ'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '7uGqnhE91VHClteaLXtXBL', 'uri': 'spotify:album:7uGqnhE91VHClteaLXtXBL', 'name': 'Flashbacks (DFM Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-11-27T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e025a2ac4f79fde88fbb424b5a2', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048515a2ac4f79fde88fbb424b5a2', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2735a2ac4f79fde88fbb424b5a2', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'MSgDwk90TbSx-tiJe4LG8g', 'shareUrl': 'https://open.spotify.com/album/7uGqnhE91VHClteaLXtXBL?si=MSgDwk90TbSx-tiJe4LG8g'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '1tywrphXZrnsZhg7w1fKKr', 'uri': 'spotify:album:1tywrphXZrnsZhg7w1fKKr', 'name': 'Flashbacks (Asher Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-11-27T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02994cd9074c1f2feda6a6a8d1', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851994cd9074c1f2feda6a6a8d1', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273994cd9074c1f2feda6a6a8d1', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'P-3GlTbTQFejSOQdg8h1Iw', 'shareUrl': 'https://open.spotify.com/album/1tywrphXZrnsZhg7w1fKKr?si=P-3GlTbTQFejSOQdg8h1Iw'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '3axozf8VicioAeHwtZphDl', 'uri': 'spotify:album:3axozf8VicioAeHwtZphDl', 'name': 'Call Me Now (Club Mixes)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-11-27T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e028db8c594e89a442eedd0d4f4', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048518db8c594e89a442eedd0d4f4', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2738db8c594e89a442eedd0d4f4', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'vUTn-uo6QSS7RCkh1tmVDg', 'shareUrl': 'https://open.spotify.com/album/3axozf8VicioAeHwtZphDl?si=vUTn-uo6QSS7RCkh1tmVDg'}, 'tracks': {'totalCount': 3}}]}}, {'releases': {'items': [{'id': '0eUWQjiE7vMv4ulgUBkOky', 'uri': 'spotify:album:0eUWQjiE7vMv4ulgUBkOky', 'name': 'Maza (Adrian Funk X OLiX Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-11-20T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02b6e687fda1852e3305d36a20', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851b6e687fda1852e3305d36a20', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273b6e687fda1852e3305d36a20', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'gCPlXnqhRoGEgwbVhhK7Vg', 'shareUrl': 'https://open.spotify.com/album/0eUWQjiE7vMv4ulgUBkOky?si=gCPlXnqhRoGEgwbVhhK7Vg'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '1meOpT671M0YXKVleWbNUe', 'uri': 'spotify:album:1meOpT671M0YXKVleWbNUe', 'name': 'Heartbreaker (Hayasa G X 2 Duds Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-11-20T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e029eaf6dbef90793fcab8754de', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048519eaf6dbef90793fcab8754de', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2739eaf6dbef90793fcab8754de', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'Yr07izgxTXCk0JRsPuAxSw', 'shareUrl': 'https://open.spotify.com/album/1meOpT671M0YXKVleWbNUe?si=Yr07izgxTXCk0JRsPuAxSw'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '3mYosi8SpolghKstXYUUVL', 'uri': 'spotify:album:3mYosi8SpolghKstXYUUVL', 'name': 'Flashbacks (Ilkan Günüç x Emrah Turken Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-11-20T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02464f80a3de8081e3ced850e5', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851464f80a3de8081e3ced850e5', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273464f80a3de8081e3ced850e5', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': '1IhfCGFjQAKvSLx3Ih8ZYQ', 'shareUrl': 'https://open.spotify.com/album/3mYosi8SpolghKstXYUUVL?si=1IhfCGFjQAKvSLx3Ih8ZYQ'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '4git7Qdd6SSGo2KTVezvJk', 'uri': 'spotify:album:4git7Qdd6SSGo2KTVezvJk', 'name': 'Flashbacks (Frost & NitugaL Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-11-20T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0248f22660a420a20c5a35578f', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485148f22660a420a20c5a35578f', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27348f22660a420a20c5a35578f', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'OrfP3H_EQdCqAn6fq-lAcg', 'shareUrl': 'https://open.spotify.com/album/4git7Qdd6SSGo2KTVezvJk?si=OrfP3H_EQdCqAn6fq-lAcg'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '04lKfTNaDbF7wsKFMT6dA4', 'uri': 'spotify:album:04lKfTNaDbF7wsKFMT6dA4', 'name': 'Pretty Thoughts', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-10-30T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02da4232c536aa2089241ae3ee', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851da4232c536aa2089241ae3ee', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273da4232c536aa2089241ae3ee', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'bvtVasd2QzGR1pjvoKbsGA', 'shareUrl': 'https://open.spotify.com/album/04lKfTNaDbF7wsKFMT6dA4?si=bvtVasd2QzGR1pjvoKbsGA'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '2DAC8ojG0pgvJUoiwmcS3F', 'uri': 'spotify:album:2DAC8ojG0pgvJUoiwmcS3F', 'name': 'Call Me Now', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-10-09T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02d0357508962439166cb3ffac', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851d0357508962439166cb3ffac', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273d0357508962439166cb3ffac', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'u8O11qu4S3q-SEGBcc48lg', 'shareUrl': 'https://open.spotify.com/album/2DAC8ojG0pgvJUoiwmcS3F?si=u8O11qu4S3q-SEGBcc48lg'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '0bXze37SVEWQFhnPV3s9LO', 'uri': 'spotify:album:0bXze37SVEWQFhnPV3s9LO', 'name': 'Read My Lips', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-09-11T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0240f07e8b812620c56865ada2', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485140f07e8b812620c56865ada2', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27340f07e8b812620c56865ada2', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'FmhJCW0RSMKSGG2bJ226Tg', 'shareUrl': 'https://open.spotify.com/album/0bXze37SVEWQFhnPV3s9LO?si=FmhJCW0RSMKSGG2bJ226Tg'}, 'tracks': {'totalCount': 1}}, {'id': '5ufENg5IRga0I2fwN3im0z', 'uri': 'spotify:album:5ufENg5IRga0I2fwN3im0z', 'name': 'Read My Lips (feat. Farina)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-09-11T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e021ea7c1b664a2305303eba411', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048511ea7c1b664a2305303eba411', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2731ea7c1b664a2305303eba411', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': '8_VM9eyvSDeTvyagCtMTBg', 'shareUrl': 'https://open.spotify.com/album/5ufENg5IRga0I2fwN3im0z?si=8_VM9eyvSDeTvyagCtMTBg'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '72htV6DCLQyi9Wy63SOW3L', 'uri': 'spotify:album:72htV6DCLQyi9Wy63SOW3L', 'name': 'Read My Lips (Deejay Killer Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-09-10T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0292c404bdc6c2a02578e5109e', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485192c404bdc6c2a02578e5109e', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27392c404bdc6c2a02578e5109e', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': '-fwYS3GjSYuvvFKwxE5Yvw', 'shareUrl': 'https://open.spotify.com/album/72htV6DCLQyi9Wy63SOW3L?si=-fwYS3GjSYuvvFKwxE5Yvw'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '5a7LjEwDcxYO7gxzK3JlQl', 'uri': 'spotify:album:5a7LjEwDcxYO7gxzK3JlQl', 'name': 'Read My Lips (Bttn Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-09-10T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0241821bcdb43cf83d0dcc519c', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485141821bcdb43cf83d0dcc519c', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27341821bcdb43cf83d0dcc519c', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'Cp1z2PJGTniZhK3NVwqvYQ', 'shareUrl': 'https://open.spotify.com/album/5a7LjEwDcxYO7gxzK3JlQl?si=Cp1z2PJGTniZhK3NVwqvYQ'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '2UmfNVsAyYfoB0HYsTaRGZ', 'uri': 'spotify:album:2UmfNVsAyYfoB0HYsTaRGZ', 'name': 'Read My Lips (Asher Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-09-10T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02ceb541de00133d201d09baec', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851ceb541de00133d201d09baec', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273ceb541de00133d201d09baec', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'El0Ghzp8S9i2lJok6sCJyw', 'shareUrl': 'https://open.spotify.com/album/2UmfNVsAyYfoB0HYsTaRGZ?si=El0Ghzp8S9i2lJok6sCJyw'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '61nRCQts4FH4MlGgq8pEdO', 'uri': 'spotify:album:61nRCQts4FH4MlGgq8pEdO', 'name': 'Read My Lips (A-Connection Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-09-10T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02024e2e55cb72c8d30211b55a', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851024e2e55cb72c8d30211b55a', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273024e2e55cb72c8d30211b55a', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': '_2t-29-rQNywwzz57gC7Tg', 'shareUrl': 'https://open.spotify.com/album/61nRCQts4FH4MlGgq8pEdO?si=_2t-29-rQNywwzz57gC7Tg'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '0YKh5UzzHKZbshkmn6Fq1g', 'uri': 'spotify:album:0YKh5UzzHKZbshkmn6Fq1g', 'name': 'Read My Lips (Suark Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-09-04T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0261b6f0dd418c93f28a42fb8c', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485161b6f0dd418c93f28a42fb8c', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27361b6f0dd418c93f28a42fb8c', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'sjoMiu8PRhuSZr-vETKFLA', 'shareUrl': 'https://open.spotify.com/album/0YKh5UzzHKZbshkmn6Fq1g?si=sjoMiu8PRhuSZr-vETKFLA'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '4zrPEcKbJPnrYR9gQXef02', 'uri': 'spotify:album:4zrPEcKbJPnrYR9gQXef02', 'name': 'Read My Lips (Nomad Digital Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-09-04T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0207d5a59643d66e6410bb7a01', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485107d5a59643d66e6410bb7a01', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27307d5a59643d66e6410bb7a01', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': '62rWx3_ITfqYJQFuz5vdvg', 'shareUrl': 'https://open.spotify.com/album/4zrPEcKbJPnrYR9gQXef02?si=62rWx3_ITfqYJQFuz5vdvg'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '4xusTeCwdS1r5CIi7orUc3', 'uri': 'spotify:album:4xusTeCwdS1r5CIi7orUc3', 'name': 'Read My Lips (Mert Hakan & Soner Karaca Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-09-04T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0212f55859323caff028417234', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485112f55859323caff028417234', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27312f55859323caff028417234', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'O86Vmz8KQaeKMZcfDGb64A', 'shareUrl': 'https://open.spotify.com/album/4xusTeCwdS1r5CIi7orUc3?si=O86Vmz8KQaeKMZcfDGb64A'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '1lnzxi9DzkaboUP2d2B0wv', 'uri': 'spotify:album:1lnzxi9DzkaboUP2d2B0wv', 'name': 'Read My Lips (Live Version)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-09-04T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0288c8a54e9fb51b81fabbf419', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485188c8a54e9fb51b81fabbf419', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27388c8a54e9fb51b81fabbf419', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': '_ggbzlEiQDyZuqAZSTkDJQ', 'shareUrl': 'https://open.spotify.com/album/1lnzxi9DzkaboUP2d2B0wv?si=_ggbzlEiQDyZuqAZSTkDJQ'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '2YChwuBfvhxBBfbAhwES3e', 'uri': 'spotify:album:2YChwuBfvhxBBfbAhwES3e', 'name': 'Read My Lips (Kom Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-09-04T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0287a719081480c4d357d9ec43', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485187a719081480c4d357d9ec43', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27387a719081480c4d357d9ec43', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'QwcAUXvlTmSq05UP4uyviw', 'shareUrl': 'https://open.spotify.com/album/2YChwuBfvhxBBfbAhwES3e?si=QwcAUXvlTmSq05UP4uyviw'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '6rv03r6Lbvky1sBJsz91gT', 'uri': 'spotify:album:6rv03r6Lbvky1sBJsz91gT', 'name': 'Read My Lips (Enver Yıldırım Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-09-04T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e025b28edc36900e3bbbd62a821', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048515b28edc36900e3bbbd62a821', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2735b28edc36900e3bbbd62a821', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'p6kbLWusRlK46FLlAwZniA', 'shareUrl': 'https://open.spotify.com/album/6rv03r6Lbvky1sBJsz91gT?si=p6kbLWusRlK46FLlAwZniA'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '1B6HKEqwxDK62wfNvTYFd2', 'uri': 'spotify:album:1B6HKEqwxDK62wfNvTYFd2', 'name': 'Read My Lips (Emrah Is & Furkan Syzo Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-09-04T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02e41f6805869b1a300bef15c4', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851e41f6805869b1a300bef15c4', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273e41f6805869b1a300bef15c4', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': '3Qi54kv8Qwm-w-erFMdH3Q', 'shareUrl': 'https://open.spotify.com/album/1B6HKEqwxDK62wfNvTYFd2?si=3Qi54kv8Qwm-w-erFMdH3Q'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '0xBL5r92lV5SZDU8FvrZ1u', 'uri': 'spotify:album:0xBL5r92lV5SZDU8FvrZ1u', 'name': 'Discoteka', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-07-23T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e025e57bd5850c48cba40516dad', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048515e57bd5850c48cba40516dad', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2735e57bd5850c48cba40516dad', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'vZ0QZj0PRzahFTt4AMxfVw', 'shareUrl': 'https://open.spotify.com/album/0xBL5r92lV5SZDU8FvrZ1u?si=vZ0QZj0PRzahFTt4AMxfVw'}, 'tracks': {'totalCount': 1}}, {'id': '41DxWGed4b9UhhlV1NMTUs', 'uri': 'spotify:album:41DxWGed4b9UhhlV1NMTUs', 'name': 'Discoteka (feat. INNA)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-07-23T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e028385aa1ee819a15f1061845e', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048518385aa1ee819a15f1061845e', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2738385aa1ee819a15f1061845e', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 's3qte6SbQfuYDLEasitdow', 'shareUrl': 'https://open.spotify.com/album/41DxWGed4b9UhhlV1NMTUs?si=s3qte6SbQfuYDLEasitdow'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '6IW8o4Lz9P9ujfUgOdHWtu', 'uri': 'spotify:album:6IW8o4Lz9P9ujfUgOdHWtu', 'name': 'Discoteka (Remix Bundle)', 'type': 'EP', 'date': {'year': 2020, 'isoString': '2020-07-22T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0254089c2162abee141be954ba', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485154089c2162abee141be954ba', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27354089c2162abee141be954ba', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'Xn0-p5_RQE2FZFNBgcK3zQ', 'shareUrl': 'https://open.spotify.com/album/6IW8o4Lz9P9ujfUgOdHWtu?si=Xn0-p5_RQE2FZFNBgcK3zQ'}, 'tracks': {'totalCount': 4}}]}}, {'releases': {'items': [{'id': '4I6pDC6siENO88V77O3Mpb', 'uri': 'spotify:album:4I6pDC6siENO88V77O3Mpb', 'name': 'Nobody', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-06-26T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02cea251d1d1e4557d87f72fbd', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851cea251d1d1e4557d87f72fbd', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273cea251d1d1e4557d87f72fbd', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'LbFUfUCaRsOibzLjkCUrUA', 'shareUrl': 'https://open.spotify.com/album/4I6pDC6siENO88V77O3Mpb?si=LbFUfUCaRsOibzLjkCUrUA'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '0Y1Nl1sqnxQApaslRhpwTP', 'uri': 'spotify:album:0Y1Nl1sqnxQApaslRhpwTP', 'name': 'Nobody (Extended Mix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-06-25T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e023cf558c1af6a3871d6e4c995', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048513cf558c1af6a3871d6e4c995', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2733cf558c1af6a3871d6e4c995', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'U1LZtmHcSzuWktFA_C7jFg', 'shareUrl': 'https://open.spotify.com/album/0Y1Nl1sqnxQApaslRhpwTP?si=U1LZtmHcSzuWktFA_C7jFg'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '2UicE2GticRO28ik8hMHxL', 'uri': 'spotify:album:2UicE2GticRO28ik8hMHxL', 'name': 'Nobody (Ferki Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-06-24T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e024bb3a004e62ac989ef48003f', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048514bb3a004e62ac989ef48003f', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2734bb3a004e62ac989ef48003f', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': '1-Flx0RnSBGmS2i3qj4YkA', 'shareUrl': 'https://open.spotify.com/album/2UicE2GticRO28ik8hMHxL?si=1-Flx0RnSBGmS2i3qj4YkA'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '6jQ3Z07rURE442fNYM84Hs', 'uri': 'spotify:album:6jQ3Z07rURE442fNYM84Hs', 'name': 'VKTM', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-05-29T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e024a4d2792326df89edcccd7a1', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048514a4d2792326df89edcccd7a1', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2734a4d2792326df89edcccd7a1', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'B6xNTyrJQFS23SzsC8bEzg', 'shareUrl': 'https://open.spotify.com/album/6jQ3Z07rURE442fNYM84Hs?si=B6xNTyrJQFS23SzsC8bEzg'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '7ol5R0cGYVflCySSwIsCAl', 'uri': 'spotify:album:7ol5R0cGYVflCySSwIsCAl', 'name': 'Sober', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-05-06T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02f56f13d5d7f5d62d3ec4f1f6', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851f56f13d5d7f5d62d3ec4f1f6', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273f56f13d5d7f5d62d3ec4f1f6', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'kVefmDMoRcCp4C8P8NY6jg', 'shareUrl': 'https://open.spotify.com/album/7ol5R0cGYVflCySSwIsCAl?si=kVefmDMoRcCp4C8P8NY6jg'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '5sHU0XJ897eLbktQSsw0ru', 'uri': 'spotify:album:5sHU0XJ897eLbktQSsw0ru', 'name': 'Sober (Extended Mix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-05-05T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e020a8c7e22cd6a26d4c5110329', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048510a8c7e22cd6a26d4c5110329', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2730a8c7e22cd6a26d4c5110329', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': '74TVPiDQRdmE4bdCmm-XAw', 'shareUrl': 'https://open.spotify.com/album/5sHU0XJ897eLbktQSsw0ru?si=74TVPiDQRdmE4bdCmm-XAw'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '1wRWRl2JmQ7qcY0w0Olnzi', 'uri': 'spotify:album:1wRWRl2JmQ7qcY0w0Olnzi', 'name': 'Not My Baby', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-04-03T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e0233a5e449d40db01a4006cd1e', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d0000485133a5e449d40db01a4006cd1e', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b27333a5e449d40db01a4006cd1e', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'GEHHBMADSCyJM4SSyghR-w', 'shareUrl': 'https://open.spotify.com/album/1wRWRl2JmQ7qcY0w0Olnzi?si=GEHHBMADSCyJM4SSyghR-w'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '3HhiJjraZFnQmMZcbui1Dv', 'uri': 'spotify:album:3HhiJjraZFnQmMZcbui1Dv', 'name': 'Sober (Nomad Digital Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-04-02T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e024d5d0bb1d0d38e9bad819e02', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d000048514d5d0bb1d0d38e9bad819e02', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b2734d5d0bb1d0d38e9bad819e02', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'h-IMjAnORluOkNKpDm7-tw', 'shareUrl': 'https://open.spotify.com/album/3HhiJjraZFnQmMZcbui1Dv?si=h-IMjAnORluOkNKpDm7-tw'}, 'tracks': {'totalCount': 1}}]}}, {'releases': {'items': [{'id': '6qx7tgsJj2mH0YLZ7Ruicx', 'uri': 'spotify:album:6qx7tgsJj2mH0YLZ7Ruicx', 'name': 'Sober (Mally Gulbetekin Remix)', 'type': 'SINGLE', 'date': {'year': 2020, 'isoString': '2020-04-02T00:00:00Z'}, 'coverArt': {'sources': [{'url': 'https://i.scdn.co/image/ab67616d00001e02ee722c8919af60622c90ca31', 'width': 300, 'height': 300}, {'url': 'https://i.scdn.co/image/ab67616d00004851ee722c8919af60622c90ca31', 'width': 64, 'height': 64}, {'url': 'https://i.scdn.co/image/ab67616d0000b273ee722c8919af60622c90ca31', 'width': 640, 'height': 640}]}, 'playability': {'playable': True, 'reason': 'PLAYABLE'}, 'sharingInfo': {'shareId': 'Si-x2Mn9TyWtkF733Gm-AQ', 'shareUrl': 'https://open.spotify.com/album/6qx7tgsJj2mH0YLZ7Ruicx?si=Si-x2Mn9TyWtkF733Gm-AQ'}, 'tracks': {'totalCount': 1}}]}}]}}}}, 'extensions': {'cacheControl': {'version': 1, 'hints': []}}}