Spaces:
Paused
Paused
Commit ·
73a30d9
1
Parent(s): 458022f
Create Dockerfile
Browse files- convert_song_format.py +77 -0
- songs.json +2139 -25
convert_song_format.py
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import json
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
def convert_song_format(original_song: dict, song_id: int) -> dict:
|
| 5 |
+
"""
|
| 6 |
+
Convert song data from original format to target format.
|
| 7 |
+
|
| 8 |
+
Args:
|
| 9 |
+
original_song (dict): Dictionary containing original song metadata.
|
| 10 |
+
song_id (int): ID to assign to the converted song entry.
|
| 11 |
+
|
| 12 |
+
Returns:
|
| 13 |
+
dict: Converted song dictionary.
|
| 14 |
+
"""
|
| 15 |
+
return {
|
| 16 |
+
"id": str(song_id),
|
| 17 |
+
"title": original_song.get("Song Name ", "").strip(),
|
| 18 |
+
"artist": original_song.get("Singer(s) ", "").strip(),
|
| 19 |
+
"albumArtUrl": original_song.get("Thumbnail", "").strip(),
|
| 20 |
+
"audioUrl": original_song.get("Play Online", "").strip()
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
def read_json_file(file_path: str) -> list:
|
| 25 |
+
"""
|
| 26 |
+
Read a JSON file and return the content as a dictionary.
|
| 27 |
+
|
| 28 |
+
Args:
|
| 29 |
+
file_path (str): Path to the JSON file.
|
| 30 |
+
|
| 31 |
+
Returns:
|
| 32 |
+
dict or list: Parsed JSON data.
|
| 33 |
+
"""
|
| 34 |
+
with open(file_path, 'r', encoding='utf-8') as file:
|
| 35 |
+
return json.load(file)
|
| 36 |
+
|
| 37 |
+
|
| 38 |
+
def write_json_file(data, file_path: str, indent: int = 2):
|
| 39 |
+
"""
|
| 40 |
+
Write data to a JSON file.
|
| 41 |
+
|
| 42 |
+
Args:
|
| 43 |
+
data (dict or list): Data to write to the file.
|
| 44 |
+
file_path (str): Path to the output JSON file.
|
| 45 |
+
indent (int): Indentation level for formatting (default is 2).
|
| 46 |
+
"""
|
| 47 |
+
with open(file_path, 'w', encoding='utf-8') as file:
|
| 48 |
+
json.dump(data, file, ensure_ascii=False, indent=indent)
|
| 49 |
+
|
| 50 |
+
|
| 51 |
+
def main():
|
| 52 |
+
bollywood_song_metadata_json = "bollywood_song_metadata.json"
|
| 53 |
+
list_of_original_song = read_json_file(bollywood_song_metadata_json)
|
| 54 |
+
# print(list_of_original_song)
|
| 55 |
+
songs_json = "songs.json"
|
| 56 |
+
|
| 57 |
+
list_of_song= []
|
| 58 |
+
|
| 59 |
+
|
| 60 |
+
# list_of_song = read_json_file(songs_json)
|
| 61 |
+
|
| 62 |
+
i = len(list_of_song)
|
| 63 |
+
|
| 64 |
+
|
| 65 |
+
print(f"initial len of song list {len(list_of_song)}")
|
| 66 |
+
for original_song in list_of_original_song:
|
| 67 |
+
i = i + 1
|
| 68 |
+
converted = convert_song_format(original_song, song_id=i)
|
| 69 |
+
list_of_song.append(converted)
|
| 70 |
+
|
| 71 |
+
print(f"final len of song list {len(list_of_song)}")
|
| 72 |
+
print(list_of_song)
|
| 73 |
+
write_json_file(list_of_song, songs_json)
|
| 74 |
+
|
| 75 |
+
|
| 76 |
+
if __name__ == "__main__":
|
| 77 |
+
main()
|
songs.json
CHANGED
|
@@ -1,44 +1,2158 @@
|
|
| 1 |
[
|
| 2 |
{
|
| 3 |
"id": "1",
|
| 4 |
-
"title": "
|
| 5 |
-
"artist": "
|
| 6 |
-
"albumArtUrl": "https://
|
| 7 |
-
"audioUrl": "https://
|
| 8 |
},
|
| 9 |
{
|
| 10 |
"id": "2",
|
| 11 |
-
"title": "
|
| 12 |
-
"artist": "
|
| 13 |
-
"albumArtUrl": "https://
|
| 14 |
-
"audioUrl": "https://
|
| 15 |
},
|
| 16 |
{
|
| 17 |
"id": "3",
|
| 18 |
-
"title": "
|
| 19 |
-
"artist": "
|
| 20 |
-
"albumArtUrl": "https://pagalgana.com/storage/
|
| 21 |
-
"audioUrl": "https://pagalgana.com/storage/
|
| 22 |
},
|
| 23 |
{
|
| 24 |
"id": "4",
|
| 25 |
-
"title": "
|
| 26 |
-
"artist": "
|
| 27 |
-
"albumArtUrl": "https://
|
| 28 |
-
"audioUrl": "https://
|
| 29 |
},
|
| 30 |
{
|
| 31 |
"id": "5",
|
| 32 |
-
"title": "
|
| 33 |
-
"artist": "
|
| 34 |
-
"albumArtUrl": "https://
|
| 35 |
-
"audioUrl": "https://
|
| 36 |
},
|
| 37 |
{
|
| 38 |
"id": "6",
|
| 39 |
-
"title": "
|
| 40 |
-
"artist": "
|
| 41 |
-
"albumArtUrl": "https://
|
| 42 |
-
"audioUrl": "https://
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
}
|
| 44 |
-
]
|
|
|
|
| 1 |
[
|
| 2 |
{
|
| 3 |
"id": "1",
|
| 4 |
+
"title": "Teri Yaadein",
|
| 5 |
+
"artist": "Yo Yo Honey Singh, Grini",
|
| 6 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/xlBToy8vZZgDYnbI1k3z.webp",
|
| 7 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/63OLPFd7BEgx9KdHswkT.mp3"
|
| 8 |
},
|
| 9 |
{
|
| 10 |
"id": "2",
|
| 11 |
+
"title": "Qayamat",
|
| 12 |
+
"artist": "Neeraj Shridhar, Shruti Dhasmana",
|
| 13 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/xiqkypGR46GQNra3H4rK.webp",
|
| 14 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/jyfxiI75qsSTLN48VzYY.mp3"
|
| 15 |
},
|
| 16 |
{
|
| 17 |
"id": "3",
|
| 18 |
+
"title": "Ting Ling Sajna",
|
| 19 |
+
"artist": "Tanishk Bagchi, Madhubanti Bagchi, Irshad Kamil",
|
| 20 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/gzDj4hDFotYwyKagBPtt.webp",
|
| 21 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/WimHbupbwfI7pfnm2KBA.mp3"
|
| 22 |
},
|
| 23 |
{
|
| 24 |
"id": "4",
|
| 25 |
+
"title": "Desi Banda",
|
| 26 |
+
"artist": "Rahul Saxena, Raman Raghuvanshi, Shafaat Ali",
|
| 27 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Desi-Banda-500.webp",
|
| 28 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/4Lw5FxuPnyEGVLDpxTWX.mp3"
|
| 29 |
},
|
| 30 |
{
|
| 31 |
"id": "5",
|
| 32 |
+
"title": "Dil E Nadaan",
|
| 33 |
+
"artist": "White Noise Collectives, Madhubanti Bagchi, Sumonto Mukherjee, Kumaar",
|
| 34 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/gFRQBN8cTepCHKC02n32.webp",
|
| 35 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/f0EnR50zRUzINzHA1Z4S.mp3"
|
| 36 |
},
|
| 37 |
{
|
| 38 |
"id": "6",
|
| 39 |
+
"title": "Laal Pari",
|
| 40 |
+
"artist": "Yo Yo Honey Singh1, Alfaaz, Simar Kaur",
|
| 41 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/KkTgzUf3etjUFDYLPEpW.webp",
|
| 42 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/8dFYLrA247cmdR0q7qbO.mp3"
|
| 43 |
+
},
|
| 44 |
+
{
|
| 45 |
+
"id": "7",
|
| 46 |
+
"title": "Ab Tere Bin (Arijit Singh Version)",
|
| 47 |
+
"artist": "Arijit Singh, Sameer, Super Cassettes Industries Private Limited",
|
| 48 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/OKd5p5NtiTFOV2pW02Qz.webp",
|
| 49 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/RZiJhqw6n5hmgIZmkar4.mp3"
|
| 50 |
+
},
|
| 51 |
+
{
|
| 52 |
+
"id": "8",
|
| 53 |
+
"title": "Ikk Vaari",
|
| 54 |
+
"artist": "Mudassar Aziz, Tanishk Bagchi, Romy",
|
| 55 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/nEWBX3UkC6n2KI7v4mO8.webp",
|
| 56 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/X5gXdjVIU2T2GeAZSZ3N.mp3"
|
| 57 |
+
},
|
| 58 |
+
{
|
| 59 |
+
"id": "9",
|
| 60 |
+
"title": "Taaka Taaki",
|
| 61 |
+
"artist": "Dr. NITZ, Sunidhi Chauhan, Raman Raghuvanshi",
|
| 62 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/taaka-taaki-pintu-ki-pappi.webp",
|
| 63 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/rdDyvgiQJ7LZE5cpJw6p.mp3"
|
| 64 |
+
},
|
| 65 |
+
{
|
| 66 |
+
"id": "10",
|
| 67 |
+
"title": "Rooh (Feat. Nushrratt Bharuccha)",
|
| 68 |
+
"artist": "Yo Yo Honey Singh1, Hritu Zee",
|
| 69 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/kgM6IMZyowE3DocDWRe6.webp",
|
| 70 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/m8SzFDj9H8qtvVb3YosJ.mp3"
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"id": "11",
|
| 74 |
+
"title": "Peelings",
|
| 75 |
+
"artist": "Javed Ali, Madhubanti Bagchi, Devi Sri Prasad",
|
| 76 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/8MsCNGCnw62uD2h3V11b.webp",
|
| 77 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/fcysPDBzzZBjOthp2IZT.mp3"
|
| 78 |
+
},
|
| 79 |
+
{
|
| 80 |
+
"id": "12",
|
| 81 |
+
"title": "Singham Again Title Track",
|
| 82 |
+
"artist": "Swanand Kirkire, Santhosh, Ravi Basrur",
|
| 83 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Q164w4hSesgcDiBTR7zj2.webp",
|
| 84 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/qxzkS7ou14nmNsutSA9p.mp3"
|
| 85 |
+
},
|
| 86 |
+
{
|
| 87 |
+
"id": "13",
|
| 88 |
+
"title": "Tribute To Sidhu Moosewala",
|
| 89 |
+
"artist": "Sidhu Moosewala, Emiway Bantai",
|
| 90 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/xouOBKH97uzHyYztEKNv.webp",
|
| 91 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/BZesZxesO9Hd6jppBazw.mp3"
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"id": "14",
|
| 95 |
+
"title": "Humsafar",
|
| 96 |
+
"artist": "Bharatt-Saurabh",
|
| 97 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/eubbcfQpzOBhGvhkLZHR.webp",
|
| 98 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/BWve6bN7g7r5TMvbWiKy.mp3"
|
| 99 |
+
},
|
| 100 |
+
{
|
| 101 |
+
"id": "15",
|
| 102 |
+
"title": "AGAR",
|
| 103 |
+
"artist": "Maan Panu, Nimit Music Project",
|
| 104 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Pb6Mwil4zMhOAbLU39fh.webp",
|
| 105 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/vNKHX9zRlC71BOjuZi1e.mp3"
|
| 106 |
+
},
|
| 107 |
+
{
|
| 108 |
+
"id": "16",
|
| 109 |
+
"title": "Mann Ye Fakir",
|
| 110 |
+
"artist": "Jeet Gannguli",
|
| 111 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/8ErKErDMKQghC3GJEKRU.webp",
|
| 112 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/yN0rlOuWVUIW1lGUKGHb.mp3"
|
| 113 |
+
},
|
| 114 |
+
{
|
| 115 |
+
"id": "17",
|
| 116 |
+
"title": "Tere Bina - Saif Ali",
|
| 117 |
+
"artist": "Saif Ali, Raj Barman",
|
| 118 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/8EgeOacZaCa7tIJCVOMn.webp",
|
| 119 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/E5ymRQaccg2Aztpv2Sjr.mp3"
|
| 120 |
+
},
|
| 121 |
+
{
|
| 122 |
+
"id": "18",
|
| 123 |
+
"title": "Ambara",
|
| 124 |
+
"artist": "Anmol A, Mitraz",
|
| 125 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/8Au3Rs4IK3tAQ64ZtVYj.webp",
|
| 126 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/p3YYwYfMRXI2jMwLHQUm.mp3"
|
| 127 |
+
},
|
| 128 |
+
{
|
| 129 |
+
"id": "19",
|
| 130 |
+
"title": "Gal Gal",
|
| 131 |
+
"artist": "Shubham Kabra",
|
| 132 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/yUglT9JIA9ePObhrjr7n.webp",
|
| 133 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/hIOyGiLb6rAPlxj87ojq.mp3"
|
| 134 |
+
},
|
| 135 |
+
{
|
| 136 |
+
"id": "20",
|
| 137 |
+
"title": "Slowly Slowly",
|
| 138 |
+
"artist": "Ash King, Tannerwell",
|
| 139 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/aZq2de9KjUeZ5o3xkuPU.webp",
|
| 140 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/zCWoBNCYRfaQMvOskdqs.mp3"
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"id": "21",
|
| 144 |
+
"title": "Aahista",
|
| 145 |
+
"artist": "Savera",
|
| 146 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/pCqHZBs74jJEqYFZEooe.webp",
|
| 147 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/biXEG5tG96Zwjf5MKbss.mp3"
|
| 148 |
+
},
|
| 149 |
+
{
|
| 150 |
+
"id": "22",
|
| 151 |
+
"title": "Radha Gori Gori",
|
| 152 |
+
"artist": "Indresh Upadhyay, B Praak",
|
| 153 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/NVNC21Wx9kFFjaae1Zge.webp",
|
| 154 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/VYRbQbReFRVyqqutEMT3.mp3"
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"id": "23",
|
| 158 |
+
"title": "Dil Mera Lauta Do (A Tragic Love Story)",
|
| 159 |
+
"artist": "Afsana Khan",
|
| 160 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/IY6dWy08cOO5dTy25RTt.webp",
|
| 161 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/tXlfi7sFNqt5o2Rz0FhJ.mp3"
|
| 162 |
+
},
|
| 163 |
+
{
|
| 164 |
+
"id": "24",
|
| 165 |
+
"title": "Bhais Charwa Re Bhais Charwa",
|
| 166 |
+
"artist": "Sumit Singh Chandravanshi, Shilpi Raj",
|
| 167 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/c8C7YTl0lyGmJEq8TQfS.webp",
|
| 168 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/yLEdqxrhlfiGVFTvlNkI.mp3"
|
| 169 |
+
},
|
| 170 |
+
{
|
| 171 |
+
"id": "25",
|
| 172 |
+
"title": "24 Ghanta",
|
| 173 |
+
"artist": "Aashish Yadav, Shweta Sargam, Pappu Bhai",
|
| 174 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/yb1JigS6bPLjSw3tuvGy.webp",
|
| 175 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/ESXi3suM8jz4NfKurOrP.mp3"
|
| 176 |
+
},
|
| 177 |
+
{
|
| 178 |
+
"id": "26",
|
| 179 |
+
"title": "Dupatta Mal Mal Ke",
|
| 180 |
+
"artist": "Neelkamal Singh, Shilpi Raj",
|
| 181 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/o9FMexgll0v573SKmt2X.webp",
|
| 182 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/5xyAhhOEfn2nicsiczIV.mp3"
|
| 183 |
+
},
|
| 184 |
+
{
|
| 185 |
+
"id": "27",
|
| 186 |
+
"title": "Tempo Se Jaibu Ki Bolero Mangadi",
|
| 187 |
+
"artist": "Samar Singh",
|
| 188 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/IbF7lX0Cgdb2W1CRY6Ia.webp",
|
| 189 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/Oo1hTWOTfRbtF1WCl3Y6.mp3"
|
| 190 |
+
},
|
| 191 |
+
{
|
| 192 |
+
"id": "28",
|
| 193 |
+
"title": "Mangaata Up Bihar",
|
| 194 |
+
"artist": "Vinay Pandey Sanu, Shilpi Raj, Vicky Vox",
|
| 195 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/UD41bm0b1p3ZoAdEQbVf.webp",
|
| 196 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/DxvBemqllmBkKSiXTtug.mp3"
|
| 197 |
+
},
|
| 198 |
+
{
|
| 199 |
+
"id": "29",
|
| 200 |
+
"title": "Nirdaiya Piyawa",
|
| 201 |
+
"artist": "Sarswati Sargam",
|
| 202 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/sT3jieJikCHJOBLEue9C.webp",
|
| 203 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/uxHTleFs7GeBwPGZLgyf.mp3"
|
| 204 |
+
},
|
| 205 |
+
{
|
| 206 |
+
"id": "30",
|
| 207 |
+
"title": "Pak Gail Lichi",
|
| 208 |
+
"artist": "Bharat Bhojpuriya",
|
| 209 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/pmeuIsmfFXEmZiZgamLK.webp",
|
| 210 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/JALWuwMp0kUMZ3GutMaV.mp3"
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"id": "31",
|
| 214 |
+
"title": "Aam Dashahari",
|
| 215 |
+
"artist": "Samar Singh, Shilpi Raj",
|
| 216 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Yjl5z1XrM0g2N3IEgm5I.webp",
|
| 217 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/cCFUGActmkUCU5PllGeg.mp3"
|
| 218 |
+
},
|
| 219 |
+
{
|
| 220 |
+
"id": "32",
|
| 221 |
+
"title": "Kala Dadhiya Me",
|
| 222 |
+
"artist": "Khushi Kakkar",
|
| 223 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/fvTbUweZ2K13Pi2pobef.webp",
|
| 224 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/enx4WFuF7iwAe9iX0AQS.mp3"
|
| 225 |
+
},
|
| 226 |
+
{
|
| 227 |
+
"id": "33",
|
| 228 |
+
"title": "Bas Bhatar Janela",
|
| 229 |
+
"artist": "Amit Patel",
|
| 230 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/YRMSVZ8hC2Prtu1tfNEm.webp",
|
| 231 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/kOnF3p4jTn4S0fwdMKMg.mp3"
|
| 232 |
+
},
|
| 233 |
+
{
|
| 234 |
+
"id": "34",
|
| 235 |
+
"title": "Bhatra Ke Bhejni Jail",
|
| 236 |
+
"artist": "Amit Ashik, Anjali Bharti",
|
| 237 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/C0CHxOivLjkrp6SjQ0Gm.webp",
|
| 238 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/tKlFafBu4jdZraJH1YL5.mp3"
|
| 239 |
+
},
|
| 240 |
+
{
|
| 241 |
+
"id": "35",
|
| 242 |
+
"title": "Hello Chacha Banada Homgardba",
|
| 243 |
+
"artist": "Amit Ashik, Anjali Bharti",
|
| 244 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/lfF4wUMI88LNEgWQyB6e.webp",
|
| 245 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/XpIcR6HW0WiuYyLaWe09.mp3"
|
| 246 |
+
},
|
| 247 |
+
{
|
| 248 |
+
"id": "36",
|
| 249 |
+
"title": "Talk Of Town",
|
| 250 |
+
"artist": "Harman Gill, Ani",
|
| 251 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/qxAoB5b0aJGDkDF7NnMg.webp",
|
| 252 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/MufhzUX0kQSyDULndB5N.mp3"
|
| 253 |
+
},
|
| 254 |
+
{
|
| 255 |
+
"id": "37",
|
| 256 |
+
"title": "Mukhde Da Til",
|
| 257 |
+
"artist": "Darshan Lakhewala",
|
| 258 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/HISUKfh6nm89iu2w4RMi.webp",
|
| 259 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/g1crOmvMbYEqUa67e4JQ.mp3"
|
| 260 |
+
},
|
| 261 |
+
{
|
| 262 |
+
"id": "38",
|
| 263 |
+
"title": "Kine Sohne",
|
| 264 |
+
"artist": "Yaari Ghuman, Amber",
|
| 265 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/ef48f4gnHPMLK6D9zJA3.webp",
|
| 266 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/UJJ9R6yEttWyOtSYB8k6.mp3"
|
| 267 |
+
},
|
| 268 |
+
{
|
| 269 |
+
"id": "39",
|
| 270 |
+
"title": "DHUAN",
|
| 271 |
+
"artist": "Janta Toor, Mirroronly",
|
| 272 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/ZYsKWFX3alQFcJotnRkm.webp",
|
| 273 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/oF8tLw5cnPULKswh9wfg.mp3"
|
| 274 |
+
},
|
| 275 |
+
{
|
| 276 |
+
"id": "40",
|
| 277 |
+
"title": "DIAL 112",
|
| 278 |
+
"artist": "Bhupinder Singh, Sarvi Rattan",
|
| 279 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/MQFwuqTaSMGnqHROXMZh.webp",
|
| 280 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/REHNoStkucouoBu2YfXT.mp3"
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"id": "41",
|
| 284 |
+
"title": "High Fly",
|
| 285 |
+
"artist": "Gurmeet Meet",
|
| 286 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/BtWIJ850I3g9hap1LycF.webp",
|
| 287 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/8faG01ETHR6m6Ey6hioo.mp3"
|
| 288 |
+
},
|
| 289 |
+
{
|
| 290 |
+
"id": "42",
|
| 291 |
+
"title": "Sadde Bare",
|
| 292 |
+
"artist": "Paras Bains",
|
| 293 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/b1rT5hLX1zJmfhgM1wTe.webp",
|
| 294 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/I6b6O0QLatEweAfcZeB5.mp3"
|
| 295 |
+
},
|
| 296 |
+
{
|
| 297 |
+
"id": "43",
|
| 298 |
+
"title": "UNRAVEL",
|
| 299 |
+
"artist": "Raahi Balray",
|
| 300 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/RobIaZPp7jA646A13DKC.webp",
|
| 301 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/wDDsfsVJHpoocykFbEYB.mp3"
|
| 302 |
+
},
|
| 303 |
+
{
|
| 304 |
+
"id": "44",
|
| 305 |
+
"title": "Chocolate Jehiyaan Gallan",
|
| 306 |
+
"artist": "Rajat",
|
| 307 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/HQa0kIifZXoVrVzUHibJ.webp",
|
| 308 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/beDVa5pAJpH3HOps9zN1.mp3"
|
| 309 |
+
},
|
| 310 |
+
{
|
| 311 |
+
"id": "45",
|
| 312 |
+
"title": "Hukam",
|
| 313 |
+
"artist": "Tera Love",
|
| 314 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/98lJHq1wbmYoL3L5eHku.webp",
|
| 315 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/qSOrlb8uJoGXbEyuLXLz.mp3"
|
| 316 |
+
},
|
| 317 |
+
{
|
| 318 |
+
"id": "46",
|
| 319 |
+
"title": "GADDI TERE YAAR DI",
|
| 320 |
+
"artist": "YOYO PALLI SINGH",
|
| 321 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/OikpBzMGzWF4QR0Eb34V.webp",
|
| 322 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/6QlbVlHt5BEKKAcuUZ0T.mp3"
|
| 323 |
+
},
|
| 324 |
+
{
|
| 325 |
+
"id": "47",
|
| 326 |
+
"title": "MAAHI",
|
| 327 |
+
"artist": "Gill Armaan",
|
| 328 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Rsi4m5lfkqSL9wJBaFO2.webp",
|
| 329 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/CLd7jjnIj7eZjb3YnN5e.mp3"
|
| 330 |
+
},
|
| 331 |
+
{
|
| 332 |
+
"id": "48",
|
| 333 |
+
"title": "Jinguchaa (Tamil)",
|
| 334 |
+
"artist": "Kamal Haasan, A.R. Rahman, Vaishali Samant, Shakthisree Gopalan, Adithya RK",
|
| 335 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/G7g57q4w2PWcne25uJzE.webp",
|
| 336 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/DCadJgCDc1LAziSb2Cae.mp3"
|
| 337 |
+
},
|
| 338 |
+
{
|
| 339 |
+
"id": "49",
|
| 340 |
+
"title": "Kuppan",
|
| 341 |
+
"artist": "Pa. Vijay, C. Sathya, Meenakshi Elayaraja, Gunasundari",
|
| 342 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/ELvIq2SoRs4uubR3Uxiz.webp",
|
| 343 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/MjUauQJOsW19UDpYFfin.mp3"
|
| 344 |
+
},
|
| 345 |
+
{
|
| 346 |
+
"id": "50",
|
| 347 |
+
"title": "Aasai Isai",
|
| 348 |
+
"artist": "Aswin Prabhash, Sreenathan Kattungal, Kavya S Chandra, Azee, Sudheesh",
|
| 349 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/pDbV6wawsN2hWuc9q4zC.webp",
|
| 350 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/sbGP42CE6Gcalj2eCMpy.mp3"
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"id": "51",
|
| 354 |
+
"title": "Vaadi Kanmani",
|
| 355 |
+
"artist": "Rakendu Mouli, Allan Preetham, Rajaganapathy, Aishwerya Radhakrishnan",
|
| 356 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/yUdRd2WzZ2fJHA0jFgPH.webp",
|
| 357 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/mYOsZQ8HClHeDgMdBeE0.mp3"
|
| 358 |
+
},
|
| 359 |
+
{
|
| 360 |
+
"id": "52",
|
| 361 |
+
"title": "Kaadhalaagiren",
|
| 362 |
+
"artist": "Vignesh Ramakrishna, Jubair Muhammed, Kapil Kapilan, Sithara Krishnakumar",
|
| 363 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/KPzZMZP4kFBBCoroZv3E.webp",
|
| 364 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/Y1Ha60jyuqtVAFTymTrB.mp3"
|
| 365 |
+
},
|
| 366 |
+
{
|
| 367 |
+
"id": "53",
|
| 368 |
+
"title": "Koothatta Kuthu",
|
| 369 |
+
"artist": "Sidhartha Pradeep, Bharat Rajesh, Aruna Mary George, Vairabharathi",
|
| 370 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/EVVlE5OtYk1o4XQAREzo.webp",
|
| 371 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/QTZaBA0m2EQrJlo6wmhu.mp3"
|
| 372 |
+
},
|
| 373 |
+
{
|
| 374 |
+
"id": "54",
|
| 375 |
+
"title": "Kadhal Velluma",
|
| 376 |
+
"artist": "Naveen Bharathi, Mickey J. Meyer, Karthik",
|
| 377 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/kLTgbDdcyKeEediut7Uj.webp",
|
| 378 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/1L5QBiRAWP0akEl66RYC.mp3"
|
| 379 |
+
},
|
| 380 |
+
{
|
| 381 |
+
"id": "55",
|
| 382 |
+
"title": "SOODA",
|
| 383 |
+
"artist": "Tha Mystro, Amos Paul, Ahashe, Selojan",
|
| 384 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/V9ohglq1iunE3rzSReCt.webp",
|
| 385 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/VfidZ909S95buGKbjlbw.mp3"
|
| 386 |
+
},
|
| 387 |
+
{
|
| 388 |
+
"id": "56",
|
| 389 |
+
"title": "Umma Song",
|
| 390 |
+
"artist": "Mohan Rajan, Siddharth Vipin, T Rajendar",
|
| 391 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/jdszqY7W7YX1acaSpysI.webp",
|
| 392 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/7Z3qIgEFQamnnooZhfP7.mp3"
|
| 393 |
+
},
|
| 394 |
+
{
|
| 395 |
+
"id": "57",
|
| 396 |
+
"title": "Tere Hawale",
|
| 397 |
+
"artist": "Sarit Dutta",
|
| 398 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/yAgMTWZkvJLHEyufwQWX.webp",
|
| 399 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/WOBMRYcrj03XQjLzkI1s.mp3"
|
| 400 |
+
},
|
| 401 |
+
{
|
| 402 |
+
"id": "58",
|
| 403 |
+
"title": "Tujhe Bhula Dia",
|
| 404 |
+
"artist": "Amit Mishra",
|
| 405 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/8aLfHcW6zhDEOKQHxKrk.webp",
|
| 406 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/hBh8Ribx6tYBDPQ8GPZP.mp3"
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"id": "59",
|
| 410 |
+
"title": "Tu Mileeya",
|
| 411 |
+
"artist": "Soham Naik",
|
| 412 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/NibrX6A6XxXb507FtLYE.webp",
|
| 413 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/5Y9FqgIWwiNuOMFs1d1K.mp3"
|
| 414 |
+
},
|
| 415 |
+
{
|
| 416 |
+
"id": "60",
|
| 417 |
+
"title": "Parchaiyan",
|
| 418 |
+
"artist": "QARAN, Vilen",
|
| 419 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/sbANqaKVPwXeSKfxDRa3.webp",
|
| 420 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/k5TyjqAGUMuBqDukB9De.mp3"
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"id": "61",
|
| 424 |
+
"title": "Tu Saath Hai Toh",
|
| 425 |
+
"artist": "Vishal Mishra",
|
| 426 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/53rAIjcVKL5arE0B9o8K.webp",
|
| 427 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/2ikcbfhNd4IQ32f8rhAP.mp3"
|
| 428 |
+
},
|
| 429 |
+
{
|
| 430 |
+
"id": "62",
|
| 431 |
+
"title": "Ishq Mera",
|
| 432 |
+
"artist": "Mukund Suryawanshi, Jubin Nautiyal, Akashdeep Sengupta",
|
| 433 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Hee7XQXQ3bleG4FeWaIB.webp",
|
| 434 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/hPHEKSTyitk3pW8ItuSa.mp3"
|
| 435 |
+
},
|
| 436 |
+
{
|
| 437 |
+
"id": "63",
|
| 438 |
+
"title": "Babu Ki Sona",
|
| 439 |
+
"artist": "ZB",
|
| 440 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Km1GAePozR1AWno8LXuZ.webp",
|
| 441 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/q4cGWXQipCqBE1nC7dJX.mp3"
|
| 442 |
+
},
|
| 443 |
+
{
|
| 444 |
+
"id": "64",
|
| 445 |
+
"title": "Sindoor",
|
| 446 |
+
"artist": "Sukhwinder Singh, Meet Bros, Aakanksha Sharma",
|
| 447 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/JXTZnyQuQ6Ltgup72vAa.webp",
|
| 448 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/DLW1d3MPvbhKFBxqqTxP.mp3"
|
| 449 |
+
},
|
| 450 |
+
{
|
| 451 |
+
"id": "65",
|
| 452 |
+
"title": "Mohabbat Mein",
|
| 453 |
+
"artist": "Gaurav Mali",
|
| 454 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/gDKkG28OBBSvxKeo21Ws.webp",
|
| 455 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/pznhlhL0CganmchonVPD.mp3"
|
| 456 |
+
},
|
| 457 |
+
{
|
| 458 |
+
"id": "66",
|
| 459 |
+
"title": "Saiyaan Jee",
|
| 460 |
+
"artist": "Starboy Loc, Pallavi Gaba",
|
| 461 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/lztd3POWSQSkFP5valCL.webp",
|
| 462 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/ySxPWgmB0uvQMto8ahqF.mp3"
|
| 463 |
+
},
|
| 464 |
+
{
|
| 465 |
+
"id": "67",
|
| 466 |
+
"title": "Mere Sarkaar",
|
| 467 |
+
"artist": "Jaya Kishori, Bhupinder Babbal, Raaj Aashoo",
|
| 468 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/ozTwV10CNdW2z2VCkzbt.webp",
|
| 469 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/YlHH9v9q14YaYz1oZ1GE.mp3"
|
| 470 |
+
},
|
| 471 |
+
{
|
| 472 |
+
"id": "68",
|
| 473 |
+
"title": "Mera Sanam Bewafa",
|
| 474 |
+
"artist": "Ashwani Machal",
|
| 475 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/sQoTTy4zZvg3k83TeX4d.webp",
|
| 476 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/npnCXBjkVIal6bS1gPHb.mp3"
|
| 477 |
+
},
|
| 478 |
+
{
|
| 479 |
+
"id": "69",
|
| 480 |
+
"title": "Ranjha Banu Mein Yaar Tera",
|
| 481 |
+
"artist": "Ashwani Machal",
|
| 482 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/W0jYtOBvix5QTf7XmKGS.webp",
|
| 483 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/aFjtZTRz9SvrIqsmaBdU.mp3"
|
| 484 |
+
},
|
| 485 |
+
{
|
| 486 |
+
"id": "70",
|
| 487 |
+
"title": "Jaan Vaar Di",
|
| 488 |
+
"artist": "Raj Barman, Prashant Ingole",
|
| 489 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/sYLKzAApE9ot5mlbm1r2.webp",
|
| 490 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/P9vwwiGrcDD4VkeJAjOW.mp3"
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"id": "71",
|
| 494 |
+
"title": "Dooba",
|
| 495 |
+
"artist": "Gaurav Tophakhane",
|
| 496 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/n4JQ0Y9zrlWYLBQ3aS0t.webp",
|
| 497 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/K5REu3AiuP3EEICBvKwx.mp3"
|
| 498 |
+
},
|
| 499 |
+
{
|
| 500 |
+
"id": "72",
|
| 501 |
+
"title": "Phir Ek Dafa",
|
| 502 |
+
"artist": "Hymath Mohammed, Sukrit Srivastava",
|
| 503 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/7NgtMznSw7JPk1QqzbZI.webp",
|
| 504 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/5wNW6pwIFu46Nbn5Vmz2.mp3"
|
| 505 |
+
},
|
| 506 |
+
{
|
| 507 |
+
"id": "73",
|
| 508 |
+
"title": "Saansein - Shahid Mallya",
|
| 509 |
+
"artist": "Shahid Mallya",
|
| 510 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/liEKKbpGtg7YxzEtQEdL.webp",
|
| 511 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/YMCXtEXciiF3B7pMWqi8.mp3"
|
| 512 |
+
},
|
| 513 |
+
{
|
| 514 |
+
"id": "74",
|
| 515 |
+
"title": "Aas Paas Tere",
|
| 516 |
+
"artist": "Kumar M",
|
| 517 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/LjWF8JkXVatplsBaGGTl.webp",
|
| 518 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/XLiejwzaa6bDzRFb3rJH.mp3"
|
| 519 |
+
},
|
| 520 |
+
{
|
| 521 |
+
"id": "75",
|
| 522 |
+
"title": "Jaan Se Zyada",
|
| 523 |
+
"artist": "Rashmi Virag, Maahi, Zain - Sam",
|
| 524 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/E74m2h19PEiYRYhYXy3E.webp",
|
| 525 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/7HcCcpfmZKtpdNygpBj4.mp3"
|
| 526 |
+
},
|
| 527 |
+
{
|
| 528 |
+
"id": "76",
|
| 529 |
+
"title": "Hutt Badmaash",
|
| 530 |
+
"artist": "Tanishk Bagchi, Noor Singh Aka Chidi, Pravesh Mallick, Shaan Yadav",
|
| 531 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/rlSajbZseRCQRE4UMKLJ.webp",
|
| 532 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/R5Rw7PXa0ShU60IoZUYY.mp3"
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"id": "77",
|
| 536 |
+
"title": "Lut Gaye Tere Ishk Mein",
|
| 537 |
+
"artist": "Himesh Reshammiya",
|
| 538 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/wsJh1CRMbSwbs2N9U0xn.webp",
|
| 539 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/ssmciY2tHBB9WYvge7II.mp3"
|
| 540 |
+
},
|
| 541 |
+
{
|
| 542 |
+
"id": "78",
|
| 543 |
+
"title": "Dil Deewana",
|
| 544 |
+
"artist": "RUUH, Joh, Sukriti Kakar",
|
| 545 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/fmcyrio7EGVqEto0Py6u.webp",
|
| 546 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/JHlC1x6My7wkwuF4XgP7.mp3"
|
| 547 |
+
},
|
| 548 |
+
{
|
| 549 |
+
"id": "79",
|
| 550 |
+
"title": "Adayein Teri",
|
| 551 |
+
"artist": "RUUH, Joh, Neeti Mohan, Savera",
|
| 552 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/9s5kW6hQASHVbSygSpqm.webp",
|
| 553 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/6hcvjKovMhGA6OQIOjli.mp3"
|
| 554 |
+
},
|
| 555 |
+
{
|
| 556 |
+
"id": "80",
|
| 557 |
+
"title": "Ecstasy",
|
| 558 |
+
"artist": "RUUH, Joh, Jubin Nautiyal, Jonita Gandhi",
|
| 559 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/F7ZORkdja1mDDywNbKSh.webp",
|
| 560 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/5Hfb2zlauzoyop9NhRtc.mp3"
|
| 561 |
+
},
|
| 562 |
+
{
|
| 563 |
+
"id": "81",
|
| 564 |
+
"title": "Dhun",
|
| 565 |
+
"artist": "Aditya N., Nayantara Bhatkal",
|
| 566 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/LqHI9KeHWp5iZoAaFILt.webp",
|
| 567 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/7FYlCrl1bMVLKFEgN6nM.mp3"
|
| 568 |
+
},
|
| 569 |
+
{
|
| 570 |
+
"id": "82",
|
| 571 |
+
"title": "Jeena",
|
| 572 |
+
"artist": "Yashwardhan Goswami, Kanishk Seth, Akanksha Bhandari",
|
| 573 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/8ElYzA0mKDCKGWpC5Af3.webp",
|
| 574 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/ChcTgj9DiSLGNwH6FVcA.mp3"
|
| 575 |
+
},
|
| 576 |
+
{
|
| 577 |
+
"id": "83",
|
| 578 |
+
"title": "Sawariya Tera",
|
| 579 |
+
"artist": "Tanishk Bagchi, Irshad Kamil, Raghav Chaitanya, Varun Jain, Suvarna Tiwari, Pravesh Mallick, Priyanka Sarkaar",
|
| 580 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/VhvAWiTWfsvbeVbOX7Th.webp",
|
| 581 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/mkLWwsKHORB0hfkdYesE.mp3"
|
| 582 |
+
},
|
| 583 |
+
{
|
| 584 |
+
"id": "84",
|
| 585 |
+
"title": "Chor Bazari Phir Se",
|
| 586 |
+
"artist": "Tanishk Bagchi, Pritam, Irshad Kamil, Sunidhi Chauhan, Neeraj Shridhar, Zahrah S Khan",
|
| 587 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/oDk9jPwpjWjg4eaWxBHw.webp",
|
| 588 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/zNRqEitpYyLmYOpIFfIr.mp3"
|
| 589 |
+
},
|
| 590 |
+
{
|
| 591 |
+
"id": "85",
|
| 592 |
+
"title": "Money Money",
|
| 593 |
+
"artist": "Yo Yo Honey Singh1",
|
| 594 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/fmST8hSNrMqzU8vT7TwB.webp",
|
| 595 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/71jGB7JIoal0LeIKMsr7.mp3"
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"id": "86",
|
| 599 |
+
"title": "Who Rules The World",
|
| 600 |
+
"artist": "Harsh Upadhyay, Sukriti Bhardwaj, Anish Mathew",
|
| 601 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/I5ohXCZzRUwFWvDLEHMo.webp",
|
| 602 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/vnhTffF7KCfPBHurccW7.mp3"
|
| 603 |
+
},
|
| 604 |
+
{
|
| 605 |
+
"id": "87",
|
| 606 |
+
"title": "Aajaa Piyaa",
|
| 607 |
+
"artist": "Himesh Reshammiya, Divya Kumar, Rupali Jagga",
|
| 608 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/m2RDc8WEGyey4PqPbtzJ.webp",
|
| 609 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/izlDeFvIIzYwUqqDFpfg.mp3"
|
| 610 |
+
},
|
| 611 |
+
{
|
| 612 |
+
"id": "88",
|
| 613 |
+
"title": "Tain Tain",
|
| 614 |
+
"artist": "Kumaar, Amit Trivedi, Dimple Saikia",
|
| 615 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/dq9RCqFDnt8Gi6LgMdtM.webp",
|
| 616 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/HnSjsFEG7707FRSZGagu.mp3"
|
| 617 |
+
},
|
| 618 |
+
{
|
| 619 |
+
"id": "89",
|
| 620 |
+
"title": "On The Way",
|
| 621 |
+
"artist": "Kumaar, Raghav Chaitanya, Akanksha Sethi, Amit Trivedi",
|
| 622 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/LWYtxqd7gTTSI8p0jgc6.webp",
|
| 623 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/D1Pj4fYnv4FayvI0kzvE.mp3"
|
| 624 |
+
},
|
| 625 |
+
{
|
| 626 |
+
"id": "90",
|
| 627 |
+
"title": "Khalbaliyaan",
|
| 628 |
+
"artist": "Kumaar, Amit Trivedi, Simran Choudhary, Taylor Jones",
|
| 629 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Oi3DeQjfv4CXcqbA23G8.webp",
|
| 630 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/kamt38fpecHQM9x1bM5R.mp3"
|
| 631 |
+
},
|
| 632 |
+
{
|
| 633 |
+
"id": "91",
|
| 634 |
+
"title": "Doriyaan",
|
| 635 |
+
"artist": "Kumaar, Arijit Singh, Shreya Ghoshal, Amit Trivedi",
|
| 636 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Xl03quzoJ0Ou76QSgn2l.webp",
|
| 637 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/Is98cCh4MxitYfSYCfyf.mp3"
|
| 638 |
+
},
|
| 639 |
+
{
|
| 640 |
+
"id": "92",
|
| 641 |
+
"title": "Tumhe Dillagi",
|
| 642 |
+
"artist": "Manoj Muntashir, Nusrat Fateh Ali Khan, Jubin Nautiyal, Rochak Kohli, Purnam Allahabadi",
|
| 643 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/JEdLiiKW6dMpPPENR2Yo.webp",
|
| 644 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/MGpVaOI78iOUDdGr6UXk.mp3"
|
| 645 |
+
},
|
| 646 |
+
{
|
| 647 |
+
"id": "93",
|
| 648 |
+
"title": "Angreji Rangrasiya",
|
| 649 |
+
"artist": "Kumaar, Amit Trivedi, Akanksha Sethi, Chotu Khan",
|
| 650 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/pXmyWz50ppAgBgnhv74w.webp",
|
| 651 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/mIbb7gJOkyBe1UUocAKt.mp3"
|
| 652 |
+
},
|
| 653 |
+
{
|
| 654 |
+
"id": "94",
|
| 655 |
+
"title": "Ilzaam",
|
| 656 |
+
"artist": "Kumaar, Vishal Mishra, Shilpa Rao, Soundtrek",
|
| 657 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Mnk1xdBDzbXdqwmTapGV.webp",
|
| 658 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/ZnFgP2yp3jqaWM3BgzMY.mp3"
|
| 659 |
+
},
|
| 660 |
+
{
|
| 661 |
+
"id": "95",
|
| 662 |
+
"title": "Kamle",
|
| 663 |
+
"artist": "Parampara Tandon, Sachet Tandon, Kausar Munir, Sachet-Parampara",
|
| 664 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/uQKhRBXV0Gj1Bwgt1jZA.webp",
|
| 665 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/RgwfAzlzDHUoCq7JyZ6L.mp3"
|
| 666 |
+
},
|
| 667 |
+
{
|
| 668 |
+
"id": "96",
|
| 669 |
+
"title": "Koi Naa",
|
| 670 |
+
"artist": "Tanishk Bagchi, Gifty, Harnoor, Shreya Ghoshal",
|
| 671 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/2APnF45tWXriEBxh60cr.webp",
|
| 672 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/G2mgc3KIcblu0UNcvVNX.mp3"
|
| 673 |
+
},
|
| 674 |
+
{
|
| 675 |
+
"id": "97",
|
| 676 |
+
"title": "Aajaa Aajaa Pardesi",
|
| 677 |
+
"artist": "Himesh Reshammiya, Sameer Anjaan",
|
| 678 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/dR1Y2E5jq8hJxWTQPWcE.webp",
|
| 679 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/rv0O0z75ZWlEXKq9kx9P.mp3"
|
| 680 |
+
},
|
| 681 |
+
{
|
| 682 |
+
"id": "98",
|
| 683 |
+
"title": "Khudaya Ishq",
|
| 684 |
+
"artist": "Kumaar, Arijit Singh, Shilpa Rao, Amit Trivedi",
|
| 685 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/gTxgdy3j0097SQEuGLEW.webp",
|
| 686 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/1KnLYsv9C0eyXdGttYHv.mp3"
|
| 687 |
+
},
|
| 688 |
+
{
|
| 689 |
+
"id": "99",
|
| 690 |
+
"title": "Touch Kiya",
|
| 691 |
+
"artist": "Thaman S, Madhubanti Bagchi, Shahid Mallya",
|
| 692 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/c8hCmLadOJo9wlKt8ca3.webp",
|
| 693 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/Dt9vZimF5zAdLAsxI2xF.mp3"
|
| 694 |
+
},
|
| 695 |
+
{
|
| 696 |
+
"id": "100",
|
| 697 |
+
"title": "Rooh",
|
| 698 |
+
"artist": "Suman Adhikary, Kavita Seth",
|
| 699 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/kbCihYIfQzWZjJgFtrfP.webp",
|
| 700 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/g7TGjAfAqvfB9TdzzY5O.mp3"
|
| 701 |
+
},
|
| 702 |
+
{
|
| 703 |
+
"id": "101",
|
| 704 |
+
"title": "Nasha",
|
| 705 |
+
"artist": "Jaani, Jasmine Sandlas, Sachet Tandon, White Noise Collectives",
|
| 706 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/X41i0UJR18vbOI6NQB1I.webp",
|
| 707 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/nuPF6kp8i2oosQBXf4Qh.mp3"
|
| 708 |
+
},
|
| 709 |
+
{
|
| 710 |
+
"id": "102",
|
| 711 |
+
"title": "Dhun Lagi",
|
| 712 |
+
"artist": "Sarosh Asif, Rohan Rohan, Romy",
|
| 713 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/xrQifBf8cUtILosiMbxr.webp",
|
| 714 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/N2QMIYEByCKBcKVefdcE.mp3"
|
| 715 |
+
},
|
| 716 |
+
{
|
| 717 |
+
"id": "103",
|
| 718 |
+
"title": "Kahani",
|
| 719 |
+
"artist": "Suman Adhikary, Richa Sharma",
|
| 720 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/JkRi0Q9VMTVFB3eXs06J.webp",
|
| 721 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/hqW6bw0PiX0tR67UwxBa.mp3"
|
| 722 |
+
},
|
| 723 |
+
{
|
| 724 |
+
"id": "104",
|
| 725 |
+
"title": "Oye Bhootni Ke",
|
| 726 |
+
"artist": "Nakash Aziz",
|
| 727 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/4aEXekba0SrLp06aBwOR.webp",
|
| 728 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/CY7O6mJpPS3zJ8HSmi9a.mp3"
|
| 729 |
+
},
|
| 730 |
+
{
|
| 731 |
+
"id": "105",
|
| 732 |
+
"title": "Padharo",
|
| 733 |
+
"artist": "Suman Adhikary, Shubha Mudgal",
|
| 734 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/LWa6GuNr5ZEzi29oqZoS.webp",
|
| 735 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/PoaluyPj1L6ZiMu3LPO8.mp3"
|
| 736 |
+
},
|
| 737 |
+
{
|
| 738 |
+
"id": "106",
|
| 739 |
+
"title": "Taikhaane Mein",
|
| 740 |
+
"artist": "Som, Pritam, Vishal Mishra",
|
| 741 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/cc77bRgJY6cYsXjYA8a9.webp",
|
| 742 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/qTqcSARwDt2ZD1FQMoAq.mp3"
|
| 743 |
+
},
|
| 744 |
+
{
|
| 745 |
+
"id": "107",
|
| 746 |
+
"title": "Jaadu",
|
| 747 |
+
"artist": "OAFF, Savera, Raghav Chaitanya, Kumaar",
|
| 748 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/g4HEnKL16aNR0tD3KI4w.webp",
|
| 749 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/UDgykheZl0GBosjl9LyX.mp3"
|
| 750 |
+
},
|
| 751 |
+
{
|
| 752 |
+
"id": "108",
|
| 753 |
+
"title": "Oh Rama Shri Rama",
|
| 754 |
+
"artist": "Adviteeya Vojjala, Sruthi Ranjani, Kalyanachakravarthy Tripuraneni, Thaman S, Dhanujay Seepana, Saketh Kommajosyula, Suman Kasula, Saatvik G Rao, Vagdevi Kumara",
|
| 755 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/l99olphorB2dVTa4GJAg.webp",
|
| 756 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/u3U8GBdsvQCbn6DJfhI6.mp3"
|
| 757 |
+
},
|
| 758 |
+
{
|
| 759 |
+
"id": "109",
|
| 760 |
+
"title": "Jaat Theme Song",
|
| 761 |
+
"artist": "Amrit Maan, Thaman S",
|
| 762 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/WHhKRjtnBagro02jevKh.webp",
|
| 763 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/2XVsOecpvujh2iTtIHYp.mp3"
|
| 764 |
+
},
|
| 765 |
+
{
|
| 766 |
+
"id": "110",
|
| 767 |
+
"title": "Khakee",
|
| 768 |
+
"artist": "Jeet Gannguli, Keerthi Sagathia",
|
| 769 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/lJ4WpfUWfPjss3wdzYJK.webp",
|
| 770 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/Ktrbh2n1W2qeG4Co4oRe.mp3"
|
| 771 |
+
},
|
| 772 |
+
{
|
| 773 |
+
"id": "111",
|
| 774 |
+
"title": "Hum Aapke Bina",
|
| 775 |
+
"artist": "Sameer Anjaan, Pritam, Arijit Singh",
|
| 776 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Cw2x0VLCQsU3Jcezcatk.webp",
|
| 777 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/W8QLwsgYM3h2DK5cLILR.mp3"
|
| 778 |
+
},
|
| 779 |
+
{
|
| 780 |
+
"id": "112",
|
| 781 |
+
"title": "Aaj Mehfil Mein",
|
| 782 |
+
"artist": "Himesh Reshammiya, Kavya Limaye",
|
| 783 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/6vup0nq4cdwKQuo7kCy3.webp",
|
| 784 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/pEO4NV9WhkXXDFkS4vhQ.mp3"
|
| 785 |
+
},
|
| 786 |
+
{
|
| 787 |
+
"id": "113",
|
| 788 |
+
"title": "Naina Bole",
|
| 789 |
+
"artist": "Shreyas Puranik, Pratibha Singh Baghel, Prashant Ingole",
|
| 790 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/sBqMd59eJVG4qrDgBp7h.webp",
|
| 791 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/EHxbltfmIaPq176r6qpw.mp3"
|
| 792 |
+
},
|
| 793 |
+
{
|
| 794 |
+
"id": "114",
|
| 795 |
+
"title": "Paani Paani Sajna",
|
| 796 |
+
"artist": "Himesh Reshammiya, Arunita Kanjilal",
|
| 797 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/0YvK1guPK4vbiyh5OFQd.webp",
|
| 798 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/HMqKY5sCIIiNfGndAOjs.mp3"
|
| 799 |
+
},
|
| 800 |
+
{
|
| 801 |
+
"id": "115",
|
| 802 |
+
"title": "Beautiful Sajna",
|
| 803 |
+
"artist": "Dr. NITZ, Himesh Reshammiya, Sunidhi Chauhan, SONNY KC, Raman Raghuvanshi",
|
| 804 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/aBgcuzQtdrda60IS4SSr.webp",
|
| 805 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/6VjaUhXQvWuCRUQUFBEQ.mp3"
|
| 806 |
+
},
|
| 807 |
+
{
|
| 808 |
+
"id": "116",
|
| 809 |
+
"title": "Shivoham",
|
| 810 |
+
"artist": "Rahul Saxena, Shafaat Ali, Kumar Nigranth",
|
| 811 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/aBgcuzQtdrda60IS4SSr.webp",
|
| 812 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/J6pOoydWjvHYRDxeiuGb.mp3"
|
| 813 |
+
},
|
| 814 |
+
{
|
| 815 |
+
"id": "117",
|
| 816 |
+
"title": "Nafarmaniyan",
|
| 817 |
+
"artist": "Dr. NITZ, Shreya Ghoshal, Javed Ali, Sonal Pradhan",
|
| 818 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/aBgcuzQtdrda60IS4SSr.webp",
|
| 819 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/4yor74JAEqSApidcZ8iz.mp3"
|
| 820 |
+
},
|
| 821 |
+
{
|
| 822 |
+
"id": "118",
|
| 823 |
+
"title": "Ghar",
|
| 824 |
+
"artist": "Anurag Saikia, Varun Jain, Kausar Munir, Romy",
|
| 825 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/oKShZBBOpAD0hsUq6rGZ.webp",
|
| 826 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/cBvdFNs9lMc3ZWlapggr.mp3"
|
| 827 |
+
},
|
| 828 |
+
{
|
| 829 |
+
"id": "119",
|
| 830 |
+
"title": "Sultana",
|
| 831 |
+
"artist": "Harsh Upadhyay, Sunidhi Chauhan, Nora Fatehi, Mika Singh, Pranav Vatsa, Sukriti Bhardwaj",
|
| 832 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/TR59E31ryDrFlfONHZ87.webp",
|
| 833 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/LnfbbndrSAcr69G7xEKc.mp3"
|
| 834 |
+
},
|
| 835 |
+
{
|
| 836 |
+
"id": "120",
|
| 837 |
+
"title": "Tirkit Dhoom",
|
| 838 |
+
"artist": "Sachin-Jigar, Vishal Dadlani, Amitabh Bhattacharya, Jigar Saraiya, Shradha Mishra",
|
| 839 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/kweCeh1XA4XLuAwARx3r.webp",
|
| 840 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/SqQsnuxg0nywNOqLTWfl.mp3"
|
| 841 |
+
},
|
| 842 |
+
{
|
| 843 |
+
"id": "121",
|
| 844 |
+
"title": "Tera Kya Karoon? (Alt. Version)",
|
| 845 |
+
"artist": "Sachin-Jigar, Jigar Saraiya, Amitabh Bhattacharya",
|
| 846 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/joVXgXdpxRrUFinQmgPA.webp",
|
| 847 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/VmMfsEp0J6y2osqDvAMR.mp3"
|
| 848 |
+
},
|
| 849 |
+
{
|
| 850 |
+
"id": "122",
|
| 851 |
+
"title": "Tera Kya Karoon?",
|
| 852 |
+
"artist": "Sachin-Jigar, Maahi, Amitabh Bhattacharya",
|
| 853 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/U4a0sOmXOHn5YAV7lWrh.webp",
|
| 854 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/2ElRr7gwyqXShZbjhYNS.mp3"
|
| 855 |
+
},
|
| 856 |
+
{
|
| 857 |
+
"id": "123",
|
| 858 |
+
"title": "Nadaaniyan (Title Song)",
|
| 859 |
+
"artist": "Sachin-Jigar, Varun Jain, Jonita Gandhi, Amitabh Bhattacharya",
|
| 860 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/A3PC8k9sERNoaado8Klc.webp",
|
| 861 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/YuguwX7DmAZlVhTv7gNg.mp3"
|
| 862 |
+
},
|
| 863 |
+
{
|
| 864 |
+
"id": "124",
|
| 865 |
+
"title": "Galatfehmi (Female Version)",
|
| 866 |
+
"artist": "Sachin-Jigar, Madhubanti Bagchi, Amitabh Bhattacharya",
|
| 867 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/DxvbGz9bdPKarqpmV63D.webp",
|
| 868 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/w4he3oI3tikHK1GuMdot.mp3"
|
| 869 |
+
},
|
| 870 |
+
{
|
| 871 |
+
"id": "125",
|
| 872 |
+
"title": "Mitron Maidaan",
|
| 873 |
+
"artist": "Harshavardhan Rameshwar, Ashim Kemson, Babbu Maan",
|
| 874 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/EJsNIR0W4fxItIwBBfy2.webp",
|
| 875 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/akku7jpXEz8xV7G09vcd.mp3"
|
| 876 |
+
},
|
| 877 |
+
{
|
| 878 |
+
"id": "126",
|
| 879 |
+
"title": "Goli Maar Bheje Mein",
|
| 880 |
+
"artist": "Gulzar, Vayu, Ila Arun, Paroma Dasgupta, Siddharth Basrur, Vishal Bhardwaj",
|
| 881 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/zwWUCOLSx9nB5hvES75Z.webp",
|
| 882 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/zK0yiLuWCVrzQuKbTM3e.mp3"
|
| 883 |
+
},
|
| 884 |
+
{
|
| 885 |
+
"id": "127",
|
| 886 |
+
"title": "Agreement Karle",
|
| 887 |
+
"artist": "Ritu Pathak, Nazakat Shujat",
|
| 888 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/5cBNitonizNf5GqpUSYZ.webp",
|
| 889 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/zGKhsecX7x8DFSNEOlQm.mp3"
|
| 890 |
+
},
|
| 891 |
+
{
|
| 892 |
+
"id": "128",
|
| 893 |
+
"title": "Dhaage",
|
| 894 |
+
"artist": "Nayantara Bhatkal, Aditya N., Madhubanti Bagchi, IP Singh, Chakori Dwivedi",
|
| 895 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/yXetRgYBjFkPUj8MNXsj.webp",
|
| 896 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/iOkRtnq5cx4GGN7W7os3.mp3"
|
| 897 |
+
},
|
| 898 |
+
{
|
| 899 |
+
"id": "129",
|
| 900 |
+
"title": "Dil Se Ziddi Title Track",
|
| 901 |
+
"artist": "Nayantara Bhatkal, Aditya N., Nikhita Gandhi, Shruti Madan",
|
| 902 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/yXetRgYBjFkPUj8MNXsj.webp",
|
| 903 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/qvwgNwVCP8Kwf6ZWaGqR.mp3"
|
| 904 |
+
},
|
| 905 |
+
{
|
| 906 |
+
"id": "130",
|
| 907 |
+
"title": "Hum Raahi Hain",
|
| 908 |
+
"artist": "Nayantara Bhatkal, Aditya N., Aditi Singh Sharma, Anand Bhaskar, Vibha Saraf",
|
| 909 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/yXetRgYBjFkPUj8MNXsj.webp",
|
| 910 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/ztWGbf5pU8JFcUYTdDv0.mp3"
|
| 911 |
+
},
|
| 912 |
+
{
|
| 913 |
+
"id": "131",
|
| 914 |
+
"title": "Ishaq To Hai Rab Ka Kalma",
|
| 915 |
+
"artist": "Rituraj Mohanty, Danish Ali",
|
| 916 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/5cBNitonizNf5GqpUSYZ.webp",
|
| 917 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/Bluxr81tNT4qYmHagEEj.mp3"
|
| 918 |
+
},
|
| 919 |
+
{
|
| 920 |
+
"id": "132",
|
| 921 |
+
"title": "Labban",
|
| 922 |
+
"artist": "Nayantara Bhatkal, Aditya N., Harjot Kaur, Chakori Dwivedi",
|
| 923 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/yXetRgYBjFkPUj8MNXsj.webp",
|
| 924 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/ygQhbn2bX9UhsEZo8XbH.mp3"
|
| 925 |
+
},
|
| 926 |
+
{
|
| 927 |
+
"id": "133",
|
| 928 |
+
"title": "Madhosh Samaa",
|
| 929 |
+
"artist": "Nayantara Bhatkal, Aditya N., Chakori Dwivedi",
|
| 930 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/yXetRgYBjFkPUj8MNXsj.webp",
|
| 931 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/R3sHTzSufK9F49vYJN29.mp3"
|
| 932 |
+
},
|
| 933 |
+
{
|
| 934 |
+
"id": "134",
|
| 935 |
+
"title": "Meri Baari",
|
| 936 |
+
"artist": "Nayantara Bhatkal, Aditya N., Chakori Dwivedi",
|
| 937 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/yXetRgYBjFkPUj8MNXsj.webp",
|
| 938 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/jRgTShVpZMNM4vdiJXiO.mp3"
|
| 939 |
+
},
|
| 940 |
+
{
|
| 941 |
+
"id": "135",
|
| 942 |
+
"title": "Sajda Karu",
|
| 943 |
+
"artist": "Javed Ali, Sahajahn Shaikh",
|
| 944 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/5cBNitonizNf5GqpUSYZ.webp",
|
| 945 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/hBDawvNIIs1j1fJsJtV4.mp3"
|
| 946 |
+
},
|
| 947 |
+
{
|
| 948 |
+
"id": "136",
|
| 949 |
+
"title": "Sarkari Baccha - Title Song",
|
| 950 |
+
"artist": "Harmaan Nazim, Saheba Khanam, Sahajahn Shaikh",
|
| 951 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/5cBNitonizNf5GqpUSYZ.webp",
|
| 952 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/XT1fjne1sslKUJsnsi6T.mp3"
|
| 953 |
+
},
|
| 954 |
+
{
|
| 955 |
+
"id": "137",
|
| 956 |
+
"title": "Naina",
|
| 957 |
+
"artist": "Anurag Saikia, Varun Jain, Kausar Munir, Romy",
|
| 958 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/oKShZBBOpAD0hsUq6rGZ.webp",
|
| 959 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/rB1oTzFNqv7hIigcKyY4.mp3"
|
| 960 |
+
},
|
| 961 |
+
{
|
| 962 |
+
"id": "138",
|
| 963 |
+
"title": "Saiyaan Ka Chumma",
|
| 964 |
+
"artist": "Somesh Saha, Bhavya Pandit, Bipin Das",
|
| 965 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/WCSYFSO1C92zmUEUq8hw.webp",
|
| 966 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/6WkLvUBeDyWqnoxCxK0I.mp3"
|
| 967 |
+
},
|
| 968 |
+
{
|
| 969 |
+
"id": "139",
|
| 970 |
+
"title": "Bande",
|
| 971 |
+
"artist": "Sachin-Jigar, Divya Kumar, Sayee Gangan, Javed Akhtar",
|
| 972 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/FmFQjSSFOB7GyfgJn3Pl.webp",
|
| 973 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/gLQbNLBCcRvw4BKNtYt7.mp3"
|
| 974 |
+
},
|
| 975 |
+
{
|
| 976 |
+
"id": "140",
|
| 977 |
+
"title": "Piya Mehandi",
|
| 978 |
+
"artist": "Sandesh Shandilya, Shradha Mishra, Suvarna Tiwari, Yash Mishra",
|
| 979 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/u74dVmv7erZnF75w3iDE.webp",
|
| 980 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/yc0hhdzs9mefUU6U1FqK.mp3"
|
| 981 |
+
},
|
| 982 |
+
{
|
| 983 |
+
"id": "141",
|
| 984 |
+
"title": "Barsaat",
|
| 985 |
+
"artist": "Himesh Reshammiya, Sanjeev Darshan, Sameer Anjaan",
|
| 986 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/wsJh1CRMbSwbs2N9U0xn.webp",
|
| 987 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/nO4QCM68wUM9knR6H1yF.mp3"
|
| 988 |
+
},
|
| 989 |
+
{
|
| 990 |
+
"id": "142",
|
| 991 |
+
"title": "Zindagi",
|
| 992 |
+
"artist": "Ambresh Shroff, Aditya Narayan",
|
| 993 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/bYXdM9iHJ6loCBeYz1AY.webp",
|
| 994 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/gAMgcGxHZhEN8iEqHZt5.mp3"
|
| 995 |
+
},
|
| 996 |
+
{
|
| 997 |
+
"id": "143",
|
| 998 |
+
"title": "Ishq Tera",
|
| 999 |
+
"artist": "Dr. Sagar, Raghav Chaitanya, Tapan Jyoti Dutta",
|
| 1000 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/8paPNyjkIspMC4knC8X0.webp",
|
| 1001 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/0UvUF48d4EXfh11NDKDB.mp3"
|
| 1002 |
+
},
|
| 1003 |
+
{
|
| 1004 |
+
"id": "144",
|
| 1005 |
+
"title": "Bharat",
|
| 1006 |
+
"artist": "A.R. Rahman, Manan Bhardwaj, Manoj Muntashir, Hariharan",
|
| 1007 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/oKShZBBOpAD0hsUq6rGZ.webp",
|
| 1008 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/g69SzIKZWG4oRWfinymr.mp3"
|
| 1009 |
+
},
|
| 1010 |
+
{
|
| 1011 |
+
"id": "145",
|
| 1012 |
+
"title": "ABHIMANYU",
|
| 1013 |
+
"artist": "Laxmikant - Pyarelal, Kishore Kumar, Anand Bakshi, The Red Kettle",
|
| 1014 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/EJsNIR0W4fxItIwBBfy2.webp",
|
| 1015 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/59TL4MOoPbhbg8Ppy89l.mp3"
|
| 1016 |
+
},
|
| 1017 |
+
{
|
| 1018 |
+
"id": "146",
|
| 1019 |
+
"title": "Zihale E Miskin",
|
| 1020 |
+
"artist": "Shekhar Astitwa, Vikram Montrose, Saroj Suman, Ali Aslam Shah, Tanya Dev Gupta, Farhad Bhiwandiwala",
|
| 1021 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/TcyrkcOgGMD3TBSaKLTZ.webp",
|
| 1022 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/0yi7YLee2sPaelH2NhBu.mp3"
|
| 1023 |
+
},
|
| 1024 |
+
{
|
| 1025 |
+
"id": "147",
|
| 1026 |
+
"title": "Waqt Ki Baatein",
|
| 1027 |
+
"artist": "Ankit Singh, Kahaanikaar, Ashish Chhabra",
|
| 1028 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/TcyrkcOgGMD3TBSaKLTZ.webp",
|
| 1029 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/esO3TlTy49q6SeonjYFC.mp3"
|
| 1030 |
+
},
|
| 1031 |
+
{
|
| 1032 |
+
"id": "148",
|
| 1033 |
+
"title": "Slomo Mein Naach",
|
| 1034 |
+
"artist": "Vikram Montrose, Abhinav Shekhar, Farhad Bhiwandiwala, Rukhsar Bandukhia",
|
| 1035 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/TcyrkcOgGMD3TBSaKLTZ.webp",
|
| 1036 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/tsa2wUi1EkBKndRsttnh.mp3"
|
| 1037 |
+
},
|
| 1038 |
+
{
|
| 1039 |
+
"id": "149",
|
| 1040 |
+
"title": "Mann Ye Bawra",
|
| 1041 |
+
"artist": "Shekhar Astitwa, Vikram Montrose, Supriyaa Paathak, Farhad Bhiwandiwala",
|
| 1042 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/TcyrkcOgGMD3TBSaKLTZ.webp",
|
| 1043 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/rHrTfqwVFCLKJRBPypiu.mp3"
|
| 1044 |
+
},
|
| 1045 |
+
{
|
| 1046 |
+
"id": "150",
|
| 1047 |
+
"title": "Tere Bin Kahin Dil Na Lagey",
|
| 1048 |
+
"artist": "Mohammed Irfan, Palak Muchhal, Nadeem",
|
| 1049 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/U4bUabrj1hvSc2TZ2tZC.webp",
|
| 1050 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/gMjIvkaMs4fDxXq4byZ2.mp3"
|
| 1051 |
+
},
|
| 1052 |
+
{
|
| 1053 |
+
"id": "151",
|
| 1054 |
+
"title": "Sawariya Ji",
|
| 1055 |
+
"artist": "Mudassar Aziz, Sohail Sen, Varsha Singh Dhanoa",
|
| 1056 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/nEWBX3UkC6n2KI7v4mO8.webp",
|
| 1057 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/aicEFrnpL6pt1Ml7SBL5.mp3"
|
| 1058 |
+
},
|
| 1059 |
+
{
|
| 1060 |
+
"id": "152",
|
| 1061 |
+
"title": "",
|
| 1062 |
+
"artist": "",
|
| 1063 |
+
"albumArtUrl": "",
|
| 1064 |
+
"audioUrl": ""
|
| 1065 |
+
},
|
| 1066 |
+
{
|
| 1067 |
+
"id": "153",
|
| 1068 |
+
"title": "Channa Tu Bemisal",
|
| 1069 |
+
"artist": "Mudassar Aziz, Jubin Nautiyal, Bhoomi Trivedi, Tanishk Bagchi",
|
| 1070 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/nEWBX3UkC6n2KI7v4mO8.webp",
|
| 1071 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/x1XqPNRkliZ7iHR35hTc.mp3"
|
| 1072 |
+
},
|
| 1073 |
+
{
|
| 1074 |
+
"id": "154",
|
| 1075 |
+
"title": "Galatfehmi",
|
| 1076 |
+
"artist": "Sachin-Jigar, Tushar Joshi, Madhubanti Bagchi, Amitabh Bhattacharya",
|
| 1077 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/kweCeh1XA4XLuAwARx3r.webp",
|
| 1078 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/4BBDxl0NWk3ya2Q2nGGX.mp3"
|
| 1079 |
+
},
|
| 1080 |
+
{
|
| 1081 |
+
"id": "155",
|
| 1082 |
+
"title": "Zinda Rahey",
|
| 1083 |
+
"artist": "A.R. Rahman, Hiral Viradia, Irshad Kamil",
|
| 1084 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Lwi9XaX15CfJVVHBOPW1.webp",
|
| 1085 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/w555xEUBkQHfvsfwLeKU.mp3"
|
| 1086 |
+
},
|
| 1087 |
+
{
|
| 1088 |
+
"id": "156",
|
| 1089 |
+
"title": "The Roar",
|
| 1090 |
+
"artist": "A.R. Rahman, MC Heam, Nakul Abhyankar",
|
| 1091 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Lwi9XaX15CfJVVHBOPW1.webp",
|
| 1092 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/djt0Tlsc0uK0ul5l6oCd.mp3"
|
| 1093 |
+
},
|
| 1094 |
+
{
|
| 1095 |
+
"id": "157",
|
| 1096 |
+
"title": "The Crown",
|
| 1097 |
+
"artist": "A.R. Rahman, Mahsa Ahmadi, Nooshin Ghayoor",
|
| 1098 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Lwi9XaX15CfJVVHBOPW1.webp",
|
| 1099 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/D0TbUBUbftOMDt1t8wyx.mp3"
|
| 1100 |
+
},
|
| 1101 |
+
{
|
| 1102 |
+
"id": "158",
|
| 1103 |
+
"title": "Teri Chaahat",
|
| 1104 |
+
"artist": "A.R. Rahman, Jonita Gandhi, Seeta Qasemie, Irshad Kamil",
|
| 1105 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Lwi9XaX15CfJVVHBOPW1.webp",
|
| 1106 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/gR8XNTrrVxiWMjGHxZux.mp3"
|
| 1107 |
+
},
|
| 1108 |
+
{
|
| 1109 |
+
"id": "159",
|
| 1110 |
+
"title": "Rudra",
|
| 1111 |
+
"artist": "A.R. Rahman, Nakul Abhyankar, Kshitij Patwardhan",
|
| 1112 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Lwi9XaX15CfJVVHBOPW1.webp",
|
| 1113 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/eNep5bc3GlknNcrtwT8M.mp3"
|
| 1114 |
+
},
|
| 1115 |
+
{
|
| 1116 |
+
"id": "160",
|
| 1117 |
+
"title": "Ude Banjare",
|
| 1118 |
+
"artist": "Shloke Lal, Akshay The One, Dev Arijit",
|
| 1119 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/toBWqgkb1MpcszCSHOZB.webp",
|
| 1120 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/hKa6HMr16C1ZpyXuZqcL.mp3"
|
| 1121 |
+
},
|
| 1122 |
+
{
|
| 1123 |
+
"id": "161",
|
| 1124 |
+
"title": "Jahaan",
|
| 1125 |
+
"artist": "Kunal Ganjawala, Shashi Suman, Abhendra Upadhyay",
|
| 1126 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/sBqMd59eJVG4qrDgBp7h.webp",
|
| 1127 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/tZVgkT1wPQBQPUybAomp.mp3"
|
| 1128 |
+
},
|
| 1129 |
+
{
|
| 1130 |
+
"id": "162",
|
| 1131 |
+
"title": "Fauji 2 Title Track",
|
| 1132 |
+
"artist": "Sonu Nigam, Shreyas Puranik, Prashant Ingole",
|
| 1133 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/sBqMd59eJVG4qrDgBp7h.webp",
|
| 1134 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/MoXEVxbhia1Bd0Ga26jB.mp3"
|
| 1135 |
+
},
|
| 1136 |
+
{
|
| 1137 |
+
"id": "163",
|
| 1138 |
+
"title": "Madman On the Run",
|
| 1139 |
+
"artist": "Shor Police, Bianca Gomes",
|
| 1140 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/0z2L7TnzoavZJL779JG5.webp",
|
| 1141 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/IuK4wyV3bHU6hl4P7Urf.mp3"
|
| 1142 |
+
},
|
| 1143 |
+
{
|
| 1144 |
+
"id": "164",
|
| 1145 |
+
"title": "Kanda Chubha",
|
| 1146 |
+
"artist": "Sonu Kakkar, Shor Police, Siddhant Kaushal, Ricardo Pereira",
|
| 1147 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/0z2L7TnzoavZJL779JG5.webp",
|
| 1148 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/mDPclOSoK741ewAVxLkT.mp3"
|
| 1149 |
+
},
|
| 1150 |
+
{
|
| 1151 |
+
"id": "165",
|
| 1152 |
+
"title": "Haseeno",
|
| 1153 |
+
"artist": "Siddhant Kaushal, Vishal Dadlani, Shor Police",
|
| 1154 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/0z2L7TnzoavZJL779JG5.webp",
|
| 1155 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/XHxyxZjfZrWPv0WXzliG.mp3"
|
| 1156 |
+
},
|
| 1157 |
+
{
|
| 1158 |
+
"id": "166",
|
| 1159 |
+
"title": "Chanchal",
|
| 1160 |
+
"artist": "Siddhant Kaushal, Shor Police, Muheet Bharti",
|
| 1161 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/0z2L7TnzoavZJL779JG5.webp",
|
| 1162 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/0cbek4uknWylMlDTfc4g.mp3"
|
| 1163 |
+
},
|
| 1164 |
+
{
|
| 1165 |
+
"id": "167",
|
| 1166 |
+
"title": "Aafaton Ke Daur Mein",
|
| 1167 |
+
"artist": "Himesh Reshammiya, Salman Ali, Shabbir Ahmed",
|
| 1168 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/wsJh1CRMbSwbs2N9U0xn.webp",
|
| 1169 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/lWglOi2WYjxT0wqAbg0U.mp3"
|
| 1170 |
+
},
|
| 1171 |
+
{
|
| 1172 |
+
"id": "168",
|
| 1173 |
+
"title": "Tumse Kyun",
|
| 1174 |
+
"artist": "Amitabh Verma, Sneha Khanwalkar, Aditi Banerjee, Siddharth Basrur",
|
| 1175 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/CjP8RqmjY4QBGxJiKadY.webp",
|
| 1176 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/qmwlJ8GMOsOz5f37eALC.mp3"
|
| 1177 |
+
},
|
| 1178 |
+
{
|
| 1179 |
+
"id": "169",
|
| 1180 |
+
"title": "Tappe",
|
| 1181 |
+
"artist": "Kahaanikar, Ashish Chhabra, Ragini Tandan",
|
| 1182 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/CjP8RqmjY4QBGxJiKadY.webp",
|
| 1183 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/HDsM8IqEhozkS9AB8Yrn.mp3"
|
| 1184 |
+
},
|
| 1185 |
+
{
|
| 1186 |
+
"id": "170",
|
| 1187 |
+
"title": "Koi Koi",
|
| 1188 |
+
"artist": "Kunal Kohli, Shaan, Akriti Kakar",
|
| 1189 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/CjP8RqmjY4QBGxJiKadY.webp",
|
| 1190 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/Jh6flDcKSeBwFem55tXM.mp3"
|
| 1191 |
+
},
|
| 1192 |
+
{
|
| 1193 |
+
"id": "171",
|
| 1194 |
+
"title": "Kal Raatein",
|
| 1195 |
+
"artist": "IP Singh, Sneha Khanwalkar",
|
| 1196 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/CjP8RqmjY4QBGxJiKadY.webp",
|
| 1197 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/0n7k1Zwtt3fa8mNu0EOv.mp3"
|
| 1198 |
+
},
|
| 1199 |
+
{
|
| 1200 |
+
"id": "172",
|
| 1201 |
+
"title": "Ishqa",
|
| 1202 |
+
"artist": "Kunwar Juneja, Veer Pandya, Purva Mantri",
|
| 1203 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/CjP8RqmjY4QBGxJiKadY.webp",
|
| 1204 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/F6yBhhpGj2Z5CbT0upHI.mp3"
|
| 1205 |
+
},
|
| 1206 |
+
{
|
| 1207 |
+
"id": "173",
|
| 1208 |
+
"title": "Gori Hai Kalaiyan",
|
| 1209 |
+
"artist": "Badshah, Akshay And IP, Kanika Kapoor",
|
| 1210 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/nEWBX3UkC6n2KI7v4mO8.webp",
|
| 1211 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/BIl7jiw2gL2tbKsCgVlq.mp3"
|
| 1212 |
+
},
|
| 1213 |
+
{
|
| 1214 |
+
"id": "174",
|
| 1215 |
+
"title": "Ek Dhaaga Toda Maine",
|
| 1216 |
+
"artist": "Prasoon Joshi, Kaveri, A.R. Rahman",
|
| 1217 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/CjP8RqmjY4QBGxJiKadY.webp",
|
| 1218 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/iYeWAydkOo8hD4R3o7wm.mp3"
|
| 1219 |
+
},
|
| 1220 |
+
{
|
| 1221 |
+
"id": "175",
|
| 1222 |
+
"title": "Aaya Re Toofan",
|
| 1223 |
+
"artist": "Irshad Kamil, Kshitij Patwardhan, A.R. Rahman, Vaishali Samant",
|
| 1224 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Lwi9XaX15CfJVVHBOPW1.webp",
|
| 1225 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/1EDGD4V0VAXIh5gCCDWv.mp3"
|
| 1226 |
+
},
|
| 1227 |
+
{
|
| 1228 |
+
"id": "176",
|
| 1229 |
+
"title": "Kaafi Hai Na",
|
| 1230 |
+
"artist": "Anurag Saikia, Shreya Phukan, Juno",
|
| 1231 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/RNXwR1PmYNLLzdzlIDa4.webp",
|
| 1232 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/eyjDLqDpW2ge1qnUl3Z0.mp3"
|
| 1233 |
+
},
|
| 1234 |
+
{
|
| 1235 |
+
"id": "177",
|
| 1236 |
+
"title": "Cheater Balma",
|
| 1237 |
+
"artist": "Anurag Saikia, Romy, Nupur Pant, Juno",
|
| 1238 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/RNXwR1PmYNLLzdzlIDa4.webp",
|
| 1239 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/g4YPSfC0qKs6nJasYihI.mp3"
|
| 1240 |
+
},
|
| 1241 |
+
{
|
| 1242 |
+
"id": "178",
|
| 1243 |
+
"title": "Bada Naam Karenge",
|
| 1244 |
+
"artist": "Anurag Saikia, Nakul Chugh, Juno",
|
| 1245 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/RNXwR1PmYNLLzdzlIDa4.webp",
|
| 1246 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/DUk62DPrzdLGdyPFbhIs.mp3"
|
| 1247 |
+
},
|
| 1248 |
+
{
|
| 1249 |
+
"id": "179",
|
| 1250 |
+
"title": "Aap Nazar Aaye",
|
| 1251 |
+
"artist": "Anurag Saikia, Nakul Chugh, Juno",
|
| 1252 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/RNXwR1PmYNLLzdzlIDa4.webp",
|
| 1253 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/fRSgmWBy3TDuDHdYABYx.mp3"
|
| 1254 |
+
},
|
| 1255 |
+
{
|
| 1256 |
+
"id": "180",
|
| 1257 |
+
"title": "Hoor",
|
| 1258 |
+
"artist": "Ashish Chhabra, Kanika Kapoor, Kahaanikar, Ankit Singh",
|
| 1259 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/CjP8RqmjY4QBGxJiKadY.webp",
|
| 1260 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/0eRuKNCYt1RMFo09qPnu.mp3"
|
| 1261 |
+
},
|
| 1262 |
+
{
|
| 1263 |
+
"id": "181",
|
| 1264 |
+
"title": "Silsila",
|
| 1265 |
+
"artist": "Siddhant Kaushal, Arijit Singh, Jonita Gandhi, Shor Police",
|
| 1266 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/0z2L7TnzoavZJL779JG5.webp",
|
| 1267 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/unkOtruNMOGqq8PBFThA.mp3"
|
| 1268 |
+
},
|
| 1269 |
+
{
|
| 1270 |
+
"id": "182",
|
| 1271 |
+
"title": "How Are You",
|
| 1272 |
+
"artist": "Benny Dayal, Asees Kaur, Shor Police",
|
| 1273 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/0z2L7TnzoavZJL779JG5.webp",
|
| 1274 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/BZQodfJKswUMMf8q1mQA.mp3"
|
| 1275 |
+
},
|
| 1276 |
+
{
|
| 1277 |
+
"id": "183",
|
| 1278 |
+
"title": "Ishq Mein",
|
| 1279 |
+
"artist": "Sachin-Jigar, Sachet Tandon, Asees Kaur, Amitabh Bhattacharya",
|
| 1280 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/kweCeh1XA4XLuAwARx3r.webp",
|
| 1281 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/byofZCpCeoQvouZkmEKJ.mp3"
|
| 1282 |
+
},
|
| 1283 |
+
{
|
| 1284 |
+
"id": "184",
|
| 1285 |
+
"title": "Jaane Tu",
|
| 1286 |
+
"artist": "A.R. Rahman, Arijit Singh, Irshad Kamil",
|
| 1287 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Lwi9XaX15CfJVVHBOPW1.webp",
|
| 1288 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/Rh978iGSdHffPWN9bAYu.mp3"
|
| 1289 |
+
},
|
| 1290 |
+
{
|
| 1291 |
+
"id": "185",
|
| 1292 |
+
"title": "Chhoolu Chhoolu",
|
| 1293 |
+
"artist": "Anirban Roy, Suresh Bobbili",
|
| 1294 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/QTij7sy2DGlf5ZJvEuze.webp",
|
| 1295 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/7M2Vqixq6f2x3tCs7lqo.mp3"
|
| 1296 |
+
},
|
| 1297 |
+
{
|
| 1298 |
+
"id": "186",
|
| 1299 |
+
"title": "Tandoori Days",
|
| 1300 |
+
"artist": "Himesh Reshammiya, Aditi Singh Sharma",
|
| 1301 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/wsJh1CRMbSwbs2N9U0xn.webp",
|
| 1302 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/vALTLa553kDvMiKhv0EJ.mp3"
|
| 1303 |
+
},
|
| 1304 |
+
{
|
| 1305 |
+
"id": "187",
|
| 1306 |
+
"title": "Tu Hain Toh Main Hoon",
|
| 1307 |
+
"artist": "Irshad Kamil, Tanishk Bagchi, Arijit Singh, Afsana Khan",
|
| 1308 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/OOyAxcG7wfbYbtOKKomz.webp",
|
| 1309 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/w1J04D1xQkqMafHqBQ19.mp3"
|
| 1310 |
+
},
|
| 1311 |
+
{
|
| 1312 |
+
"id": "188",
|
| 1313 |
+
"title": "Ae Mere Watan Ke Logon",
|
| 1314 |
+
"artist": "Pradeep, Lata Mangeshkar, C. Ramchandra, Tanishk Bagchi",
|
| 1315 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/OOyAxcG7wfbYbtOKKomz.webp",
|
| 1316 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/eEADb6EqOf0gWZ7Nk1gF.mp3"
|
| 1317 |
+
},
|
| 1318 |
+
{
|
| 1319 |
+
"id": "189",
|
| 1320 |
+
"title": "Rang",
|
| 1321 |
+
"artist": "Shloke Lal, Tanishk Bagchi, Satinder Sartaaj, Zahrah S Khan",
|
| 1322 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/OOyAxcG7wfbYbtOKKomz.webp",
|
| 1323 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/k1egIL8kd8rIpPSBjKrt.mp3"
|
| 1324 |
+
},
|
| 1325 |
+
{
|
| 1326 |
+
"id": "190",
|
| 1327 |
+
"title": "Hookstep Hookah Bar",
|
| 1328 |
+
"artist": "Himesh Reshammiya, Sunidhi Chauhan, Shannon K",
|
| 1329 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/wsJh1CRMbSwbs2N9U0xn.webp",
|
| 1330 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/1gTMD3jxu2bCLsbWsp1K.mp3"
|
| 1331 |
+
},
|
| 1332 |
+
{
|
| 1333 |
+
"id": "191",
|
| 1334 |
+
"title": "Haathon Mein Haath",
|
| 1335 |
+
"artist": "Savneet Singh",
|
| 1336 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/1Ortrnkap8zwgctAkjVo.webp",
|
| 1337 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/4Zn10oZ6hMA7R7aQ5eZv.mp3"
|
| 1338 |
+
},
|
| 1339 |
+
{
|
| 1340 |
+
"id": "192",
|
| 1341 |
+
"title": "Pia",
|
| 1342 |
+
"artist": "Mitraz, Anmol A",
|
| 1343 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/umV0r2ZOj1kCSoyQezUp.webp",
|
| 1344 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/JflqflK5JnHaR9UXN8pf.mp3"
|
| 1345 |
+
},
|
| 1346 |
+
{
|
| 1347 |
+
"id": "193",
|
| 1348 |
+
"title": "Sambhala Hai Maine (Take 2)",
|
| 1349 |
+
"artist": "Dev Negi1",
|
| 1350 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/8PY5Pst7thsyLQHxgxnE.webp",
|
| 1351 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/3HrgzfnzZaNEDh4MvxpJ.mp3"
|
| 1352 |
+
},
|
| 1353 |
+
{
|
| 1354 |
+
"id": "194",
|
| 1355 |
+
"title": "Tera Kasoor",
|
| 1356 |
+
"artist": "Vishal Mishra, Payal Dev, Kunaal Vermaa",
|
| 1357 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/KDrAd1D1H1V7Fv64pE9f.webp",
|
| 1358 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/bZm2EqJQJTkvBue1dIpK.mp3"
|
| 1359 |
+
},
|
| 1360 |
+
{
|
| 1361 |
+
"id": "195",
|
| 1362 |
+
"title": "AANKH",
|
| 1363 |
+
"artist": "Sunidhi Chauhan, Rusha And Blizza",
|
| 1364 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/6yve1qH6ox8I01W2Spc9.webp",
|
| 1365 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/bH0H8q9arkUom9o3b2jJ.mp3"
|
| 1366 |
+
},
|
| 1367 |
+
{
|
| 1368 |
+
"id": "196",
|
| 1369 |
+
"title": "Rush Hour",
|
| 1370 |
+
"artist": "Bella, UZIII",
|
| 1371 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/k2PPlfzQylUTalXzEeDN.webp",
|
| 1372 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/XJIeQ4QieXeYMl61NxPF.mp3"
|
| 1373 |
+
},
|
| 1374 |
+
{
|
| 1375 |
+
"id": "197",
|
| 1376 |
+
"title": "Tum Kya Ho",
|
| 1377 |
+
"artist": "Ankit Tiwari, Arijit Singh, Abhendra Upadhyay",
|
| 1378 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/QKLiQiL4AiEatSKf9RI8.webp",
|
| 1379 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/qNnlLjXc06bvWPQjFYxl.mp3"
|
| 1380 |
+
},
|
| 1381 |
+
{
|
| 1382 |
+
"id": "198",
|
| 1383 |
+
"title": "Shayari",
|
| 1384 |
+
"artist": "Prince Dubey, Ankit Tiwari",
|
| 1385 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/QKLiQiL4AiEatSKf9RI8.webp",
|
| 1386 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/48TGFevJpFDVwFnQX9Ej.mp3"
|
| 1387 |
+
},
|
| 1388 |
+
{
|
| 1389 |
+
"id": "199",
|
| 1390 |
+
"title": "Pyaar Karo",
|
| 1391 |
+
"artist": "Ankit Tiwari, Payal Dev, Abhendra Upadhyay",
|
| 1392 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/QKLiQiL4AiEatSKf9RI8.webp",
|
| 1393 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/iroL4JDrHywz2HVUVHQk.mp3"
|
| 1394 |
+
},
|
| 1395 |
+
{
|
| 1396 |
+
"id": "200",
|
| 1397 |
+
"title": "Mazak Karte Ho",
|
| 1398 |
+
"artist": "Ankit Tiwari, Abhendra Upadhyay",
|
| 1399 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/QKLiQiL4AiEatSKf9RI8.webp",
|
| 1400 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/M1DbUjl4LpvaYOtqKR1i.mp3"
|
| 1401 |
+
},
|
| 1402 |
+
{
|
| 1403 |
+
"id": "201",
|
| 1404 |
+
"title": "Likhta Hun",
|
| 1405 |
+
"artist": "Ankit Tiwari, Abhendra Upadhyay",
|
| 1406 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/QKLiQiL4AiEatSKf9RI8.webp",
|
| 1407 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/LXq7Npe1lt0yc2gK5yPm.mp3"
|
| 1408 |
+
},
|
| 1409 |
+
{
|
| 1410 |
+
"id": "202",
|
| 1411 |
+
"title": "Adab Se",
|
| 1412 |
+
"artist": "Ankit Tiwari, Agsy, Abhendra Upadhyay",
|
| 1413 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/QKLiQiL4AiEatSKf9RI8.webp",
|
| 1414 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/8es1VD8f1WJ32ewIT45z.mp3"
|
| 1415 |
+
},
|
| 1416 |
+
{
|
| 1417 |
+
"id": "203",
|
| 1418 |
+
"title": "Mera Na Hua",
|
| 1419 |
+
"artist": "Emiway Bantai",
|
| 1420 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/dS14LFLky8LXC8P8jyhf.webp",
|
| 1421 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/fe4PusTpi6Ju58pluDZB.mp3"
|
| 1422 |
+
},
|
| 1423 |
+
{
|
| 1424 |
+
"id": "204",
|
| 1425 |
+
"title": "Sajna",
|
| 1426 |
+
"artist": "Sushant Khatri",
|
| 1427 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/lbKNHw25HwjVMfSbI7Dn.webp",
|
| 1428 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/m0k7j5IbFspiQ1J70GPX.mp3"
|
| 1429 |
+
},
|
| 1430 |
+
{
|
| 1431 |
+
"id": "205",
|
| 1432 |
+
"title": "Out Of Time",
|
| 1433 |
+
"artist": "Jani, Rithmetic",
|
| 1434 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/8iXGVobjpetnOZl8BYgw.webp",
|
| 1435 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/0gx9eY5nptn5yupxsiD9.mp3"
|
| 1436 |
+
},
|
| 1437 |
+
{
|
| 1438 |
+
"id": "206",
|
| 1439 |
+
"title": "Afghaani Afeem Hai",
|
| 1440 |
+
"artist": "Tony Kakkar",
|
| 1441 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/4mCb6vCJ45fpKiQn1CZ6.webp",
|
| 1442 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/kp5xpkle8kUMDi2zvHhZ.mp3"
|
| 1443 |
+
},
|
| 1444 |
+
{
|
| 1445 |
+
"id": "207",
|
| 1446 |
+
"title": "Jaao",
|
| 1447 |
+
"artist": "Ipsitaa, Sunny M.R., Kaushal Kishore",
|
| 1448 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/OKZdasrsv9joRFpECJxo.webp",
|
| 1449 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/niORB1Mf1b1CgChDT089.mp3"
|
| 1450 |
+
},
|
| 1451 |
+
{
|
| 1452 |
+
"id": "208",
|
| 1453 |
+
"title": "Na Mujhko Pata",
|
| 1454 |
+
"artist": "Rito Riba, Aroob Khan, Rajat Nagpal",
|
| 1455 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/O2C7onjdDYoNX0MO867Z.webp",
|
| 1456 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/M5jSKEVCnYXvOR0IC0dz.mp3"
|
| 1457 |
+
},
|
| 1458 |
+
{
|
| 1459 |
+
"id": "209",
|
| 1460 |
+
"title": "Shikayat Hai",
|
| 1461 |
+
"artist": "Aditya Shankar, Manoj Muntashir",
|
| 1462 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/nEJM0Zaz7cDCPx33CC10.webp",
|
| 1463 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/RB49KTKdnoB3OlBfVPdC.mp3"
|
| 1464 |
+
},
|
| 1465 |
+
{
|
| 1466 |
+
"id": "210",
|
| 1467 |
+
"title": "Shaadi Kar Lenge",
|
| 1468 |
+
"artist": "Aniket Shukla",
|
| 1469 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/S1SyCEt6sjqIkCgPz4I5.webp",
|
| 1470 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/9q7bw4zwaPzlMxlhfYFV.mp3"
|
| 1471 |
+
},
|
| 1472 |
+
{
|
| 1473 |
+
"id": "211",
|
| 1474 |
+
"title": "Sachi",
|
| 1475 |
+
"artist": "KhullarG, Vision",
|
| 1476 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Z7kESUNbv4DJPJ3c4roy.webp",
|
| 1477 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/uyb4bMVDzw9jX9Nd1yIC.mp3"
|
| 1478 |
+
},
|
| 1479 |
+
{
|
| 1480 |
+
"id": "212",
|
| 1481 |
+
"title": "Noorie (Two Sides)",
|
| 1482 |
+
"artist": "Jonita Gandhi",
|
| 1483 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/zrxgaG4i4kdYD6vmX66M.webp",
|
| 1484 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/un0H79MuNlmWcXqAIqve.mp3"
|
| 1485 |
+
},
|
| 1486 |
+
{
|
| 1487 |
+
"id": "213",
|
| 1488 |
+
"title": "Balmaa",
|
| 1489 |
+
"artist": "Saif Ali, Guntaas",
|
| 1490 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/FiY9b7TncN4GeFUkKyG9.webp",
|
| 1491 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/3cZwNFjDjzYtxAQfARdt.mp3"
|
| 1492 |
+
},
|
| 1493 |
+
{
|
| 1494 |
+
"id": "214",
|
| 1495 |
+
"title": "Mahiyaa",
|
| 1496 |
+
"artist": "Sameer Khan, Sunny Vik",
|
| 1497 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/PvRDnhsDPHiTSFlLnwfh.webp",
|
| 1498 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/pnY9rQAiHxh1msaPJEE9.mp3"
|
| 1499 |
+
},
|
| 1500 |
+
{
|
| 1501 |
+
"id": "215",
|
| 1502 |
+
"title": "Kaun",
|
| 1503 |
+
"artist": "Dino James, Shah RuLe, Bluish Music",
|
| 1504 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/esWCeDOpeITl4njNLAJ1.webp",
|
| 1505 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/Onh9o91UEGIZuDK5KhK3.mp3"
|
| 1506 |
+
},
|
| 1507 |
+
{
|
| 1508 |
+
"id": "216",
|
| 1509 |
+
"title": "Sorry",
|
| 1510 |
+
"artist": "Savneet Singh",
|
| 1511 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/J1LFjhjHSHbcXnAuI2Sl.webp",
|
| 1512 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/VWIfnwbsuLFrmF9ACzxP.mp3"
|
| 1513 |
+
},
|
| 1514 |
+
{
|
| 1515 |
+
"id": "217",
|
| 1516 |
+
"title": "Homa Dol",
|
| 1517 |
+
"artist": "Saad Lamjarred, Neeti Mohan, Rajat Nagpal",
|
| 1518 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/IakKpIcTuSoEqD4Jnjw2.webp",
|
| 1519 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/kaoKtoNvgFGIrBQB4NRQ.mp3"
|
| 1520 |
+
},
|
| 1521 |
+
{
|
| 1522 |
+
"id": "218",
|
| 1523 |
+
"title": "Ho Gaya Tumse Pyar",
|
| 1524 |
+
"artist": "Bibhuti Gogoi, Pawandeep Rajan, Arunita Kanjilal",
|
| 1525 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/JXKNMOURaEr5cx5aVMoi.webp",
|
| 1526 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/LOh76AgsTIrH8lBp1EW2.mp3"
|
| 1527 |
+
},
|
| 1528 |
+
{
|
| 1529 |
+
"id": "219",
|
| 1530 |
+
"title": "Vallo Vallo",
|
| 1531 |
+
"artist": "Amit Trivedi, Neeti Mohan, Asees Kaur",
|
| 1532 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/pB05fRrkpRg9PSPwxIcm.webp",
|
| 1533 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/AnLufXDDZAtxbsNKegg9.mp3"
|
| 1534 |
+
},
|
| 1535 |
+
{
|
| 1536 |
+
"id": "220",
|
| 1537 |
+
"title": "Sunn Husna Di Pariye",
|
| 1538 |
+
"artist": "Amit Trivedi, Simran Choudhary",
|
| 1539 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/pB05fRrkpRg9PSPwxIcm.webp",
|
| 1540 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/k4rcRAZPzjx1HZt4hF2b.mp3"
|
| 1541 |
+
},
|
| 1542 |
+
{
|
| 1543 |
+
"id": "221",
|
| 1544 |
+
"title": "Pushpa Pushpa - Pushpa 2",
|
| 1545 |
+
"artist": "Mika Singh, Nakash Aziz",
|
| 1546 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/8MsCNGCnw62uD2h3V11b.webp",
|
| 1547 |
+
"audioUrl": "https://pagalgana.com/storage/audios/bollywood/title-track-pushpa-2-mi-Bollyw-2024-128.mp3"
|
| 1548 |
+
},
|
| 1549 |
+
{
|
| 1550 |
+
"id": "222",
|
| 1551 |
+
"title": "Angaaron - Pushpa 2",
|
| 1552 |
+
"artist": "Shreya Ghoshal",
|
| 1553 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/8MsCNGCnw62uD2h3V11b.webp",
|
| 1554 |
+
"audioUrl": "https://pagalgana.com/storage/audios/bollywood/angaaron-pushpa-2-shre-Bollyw-2024-128.mp3"
|
| 1555 |
+
},
|
| 1556 |
+
{
|
| 1557 |
+
"id": "223",
|
| 1558 |
+
"title": "Kissik (Hindi)",
|
| 1559 |
+
"artist": "Lothika, Sublahshini, Devi Sri Prasad",
|
| 1560 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/8MsCNGCnw62uD2h3V11b.webp",
|
| 1561 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/GzhTT8RL2Lta1HNlRb0I.mp3"
|
| 1562 |
+
},
|
| 1563 |
+
{
|
| 1564 |
+
"id": "224",
|
| 1565 |
+
"title": "Kaali Mahaa Kaali",
|
| 1566 |
+
"artist": "Devi Sri Prasad, Kailash Kher, Raqueeb Alam",
|
| 1567 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/8MsCNGCnw62uD2h3V11b.webp",
|
| 1568 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/VQmIlCY7Yfbky1xIHPSR.mp3"
|
| 1569 |
+
},
|
| 1570 |
+
{
|
| 1571 |
+
"id": "225",
|
| 1572 |
+
"title": "Jaana Hairaan Sa (Hindi)",
|
| 1573 |
+
"artist": "Kausar Munir, Thaman S, Karthik, Shreya Ghoshal",
|
| 1574 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/cHq4zxl0muUY9DFhBA95.webp",
|
| 1575 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/sQGE3q0FUbsOkRxZo4JI.mp3"
|
| 1576 |
+
},
|
| 1577 |
+
{
|
| 1578 |
+
"id": "226",
|
| 1579 |
+
"title": "Marhaba (Hindi)",
|
| 1580 |
+
"artist": "Dr.Prasad Biware, Sunidhi Chauhan, Mohit Kulkarni",
|
| 1581 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Ox9Jsdm8fDq8oB3kRLYD.webp",
|
| 1582 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/pZdPyRnVfVRhyaE2Vwjy.mp3"
|
| 1583 |
+
},
|
| 1584 |
+
{
|
| 1585 |
+
"id": "227",
|
| 1586 |
+
"title": "Chal Zero Pe Chalte Hain",
|
| 1587 |
+
"artist": "Shantanu Moitra, Shaan, Shankar Mahadevan, Sonu Nigam, Swanand Kirkire",
|
| 1588 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/osbWrMIWG8kPjGp4pbb3.webp",
|
| 1589 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/7u7xTUwtdiAReCgq0OXy.mp3"
|
| 1590 |
+
},
|
| 1591 |
+
{
|
| 1592 |
+
"id": "228",
|
| 1593 |
+
"title": "Yuhi Nahi",
|
| 1594 |
+
"artist": "Himesh Reshammiya, Alka Yagnik, Udit Narayan, Sameer",
|
| 1595 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/34CtbY2EL8dYzHCaWL8J.webp",
|
| 1596 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/Zn1B1PVBTKlbXfxSLzWT.mp3"
|
| 1597 |
+
},
|
| 1598 |
+
{
|
| 1599 |
+
"id": "229",
|
| 1600 |
+
"title": "Thehre Rahen",
|
| 1601 |
+
"artist": "Manoj Muntashir, Jubin Nautiyal, Payal Dev",
|
| 1602 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/yDTVFT5wnNOg0XUla2AT.webp",
|
| 1603 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/qaygibQg1bBH1JMTs9UE.mp3"
|
| 1604 |
+
},
|
| 1605 |
+
{
|
| 1606 |
+
"id": "230",
|
| 1607 |
+
"title": "Nabz Mein Tu Hai",
|
| 1608 |
+
"artist": "Shaan, Hargun Kaur, Monty Sharma",
|
| 1609 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/pk59Y8b2rIHeIZelNdBq.webp",
|
| 1610 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/OHx6b6Vaae8IAUgStz2V.mp3"
|
| 1611 |
+
},
|
| 1612 |
+
{
|
| 1613 |
+
"id": "231",
|
| 1614 |
+
"title": "Laila",
|
| 1615 |
+
"artist": "Himesh Reshammiya, Sunidhi Chauhan, Kunal Ganjawala",
|
| 1616 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/34CtbY2EL8dYzHCaWL8J.webp",
|
| 1617 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/yj9uc93NBjNLRB7C5mkc.mp3"
|
| 1618 |
+
},
|
| 1619 |
+
{
|
| 1620 |
+
"id": "232",
|
| 1621 |
+
"title": "Ishq Da",
|
| 1622 |
+
"artist": "Sunidhi Chauhan, Himesh Reshammiya",
|
| 1623 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/34CtbY2EL8dYzHCaWL8J.webp",
|
| 1624 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/06htOQDsta32DyLSLTBd.mp3"
|
| 1625 |
+
},
|
| 1626 |
+
{
|
| 1627 |
+
"id": "233",
|
| 1628 |
+
"title": "Money Money",
|
| 1629 |
+
"artist": "Rapper Ro, Ravi Basrur",
|
| 1630 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/gqIRIOWKk6Vt5XVpZeYm.webp",
|
| 1631 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/dt6uEjle5gL2bnOCi6Va.mp3"
|
| 1632 |
+
},
|
| 1633 |
+
{
|
| 1634 |
+
"id": "234",
|
| 1635 |
+
"title": "Zindagi Tujhse",
|
| 1636 |
+
"artist": "Raj Barman",
|
| 1637 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/pzIxdudYEqnbR9H9CGAu.webp",
|
| 1638 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/SUibwUARiHUptYKdMRis.mp3"
|
| 1639 |
+
},
|
| 1640 |
+
{
|
| 1641 |
+
"id": "235",
|
| 1642 |
+
"title": "Loot Le Tu",
|
| 1643 |
+
"artist": "Nakaash Aziz",
|
| 1644 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/pzIxdudYEqnbR9H9CGAu.webp",
|
| 1645 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/UjiXmE7qkJiVUNtm1Qip.mp3"
|
| 1646 |
+
},
|
| 1647 |
+
{
|
| 1648 |
+
"id": "236",
|
| 1649 |
+
"title": "Jism Mein Tere",
|
| 1650 |
+
"artist": "Mohammed Irfan, Rubai",
|
| 1651 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/pzIxdudYEqnbR9H9CGAu.webp",
|
| 1652 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/XBQOh03sANPh45RJvFke.mp3"
|
| 1653 |
+
},
|
| 1654 |
+
{
|
| 1655 |
+
"id": "237",
|
| 1656 |
+
"title": "Mere Dholna 3.0 (Sonu Nigam Version)",
|
| 1657 |
+
"artist": "Amaal Mallik, Sonu Nigam, Sameer, Pritam",
|
| 1658 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/pcjg6hY2ONjc1rxca9fJ.webp",
|
| 1659 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/oEef7hoTqpJ1cT8twtTa.mp3"
|
| 1660 |
+
},
|
| 1661 |
+
{
|
| 1662 |
+
"id": "238",
|
| 1663 |
+
"title": "Jiya Jaye Na (Hindi)",
|
| 1664 |
+
"artist": "Dr.Prasad Biware, Shreya Ghoshal, Mohit Kulkarni, Amruta Khanvilkar, Thakur Anoop Singh",
|
| 1665 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Ox9Jsdm8fDq8oB3kRLYD.webp",
|
| 1666 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/CW02mlO39KiBnCdMAhH6.mp3"
|
| 1667 |
+
},
|
| 1668 |
+
{
|
| 1669 |
+
"id": "239",
|
| 1670 |
+
"title": "Dil Ghabraye",
|
| 1671 |
+
"artist": "Taba Chake",
|
| 1672 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/TYBSSmeoe94aclMT6MCF.webp",
|
| 1673 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/b49sVHDDTwJQxw4jobQq.mp3"
|
| 1674 |
+
},
|
| 1675 |
+
{
|
| 1676 |
+
"id": "240",
|
| 1677 |
+
"title": "Zaroori Toh Nahi (Live Version)",
|
| 1678 |
+
"artist": "Manoj Mishra, Aman Pant, Akhil Tiwari",
|
| 1679 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/J252gbYs3hoLqtwSbrBR.webp",
|
| 1680 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/DlqhwPla25GgXbsx1LWi.mp3"
|
| 1681 |
+
},
|
| 1682 |
+
{
|
| 1683 |
+
"id": "241",
|
| 1684 |
+
"title": "Zaroori Toh Nahi",
|
| 1685 |
+
"artist": "Aman Pant, Kinjal Chatterjee, Akhil Tiwari",
|
| 1686 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/J252gbYs3hoLqtwSbrBR.webp",
|
| 1687 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/7f51ZaFp6lscsrupHOpR.mp3"
|
| 1688 |
+
},
|
| 1689 |
+
{
|
| 1690 |
+
"id": "242",
|
| 1691 |
+
"title": "Yeh Safar",
|
| 1692 |
+
"artist": "Sachin-Jigar, Shilpa Rao, Osho Jain, Priya Saraiya",
|
| 1693 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/J252gbYs3hoLqtwSbrBR.webp",
|
| 1694 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/DgVuv16oyBuX0dzcfBJQ.mp3"
|
| 1695 |
+
},
|
| 1696 |
+
{
|
| 1697 |
+
"id": "243",
|
| 1698 |
+
"title": "Tufaan",
|
| 1699 |
+
"artist": "Fiddlecraft",
|
| 1700 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/J252gbYs3hoLqtwSbrBR.webp",
|
| 1701 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/2udGFZTpRtZuOOQIDhrt.mp3"
|
| 1702 |
+
},
|
| 1703 |
+
{
|
| 1704 |
+
"id": "244",
|
| 1705 |
+
"title": "Title Theme",
|
| 1706 |
+
"artist": "Aman Pant, Alex Belcher",
|
| 1707 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/J252gbYs3hoLqtwSbrBR.webp",
|
| 1708 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/FBOsrvv43ko2He5SQZjG.mp3"
|
| 1709 |
+
},
|
| 1710 |
+
{
|
| 1711 |
+
"id": "245",
|
| 1712 |
+
"title": "Rihaa",
|
| 1713 |
+
"artist": "Gravity, Outfly, Akshay Poojary",
|
| 1714 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/J252gbYs3hoLqtwSbrBR.webp",
|
| 1715 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/0AXZYOBZVHq52oMj1y3G.mp3"
|
| 1716 |
+
},
|
| 1717 |
+
{
|
| 1718 |
+
"id": "246",
|
| 1719 |
+
"title": "Ghum Hain Kahin",
|
| 1720 |
+
"artist": "Papon, Ramil Ganjoo, Aman Pant, Akhil Tiwari",
|
| 1721 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/J252gbYs3hoLqtwSbrBR.webp",
|
| 1722 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/QL70YQM4doE1mxBDlAYU.mp3"
|
| 1723 |
+
},
|
| 1724 |
+
{
|
| 1725 |
+
"id": "247",
|
| 1726 |
+
"title": "Blue Skies",
|
| 1727 |
+
"artist": "When Chai Met Toast, Siddhant Kaushal",
|
| 1728 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/J252gbYs3hoLqtwSbrBR.webp",
|
| 1729 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/BHsXK6xXVdxFA8miXOc6.mp3"
|
| 1730 |
+
},
|
| 1731 |
+
{
|
| 1732 |
+
"id": "248",
|
| 1733 |
+
"title": "Beast Mode",
|
| 1734 |
+
"artist": "Rob C, Pratika, Aman Pant",
|
| 1735 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/J252gbYs3hoLqtwSbrBR.webp",
|
| 1736 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/Pib87QtH6cuQYSztzu9r.mp3"
|
| 1737 |
+
},
|
| 1738 |
+
{
|
| 1739 |
+
"id": "249",
|
| 1740 |
+
"title": "Khwaabon Ka Jhamela Title Track",
|
| 1741 |
+
"artist": "Siddharth Basrur, Surya Ragunaathan",
|
| 1742 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/gle84xKnB5Iyy2HJZZSZ.webp",
|
| 1743 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/E1Z1Vt1B5tHDe8NUk39s.mp3"
|
| 1744 |
+
},
|
| 1745 |
+
{
|
| 1746 |
+
"id": "250",
|
| 1747 |
+
"title": "Jee Le Tu",
|
| 1748 |
+
"artist": "Shahzan Mujeeb",
|
| 1749 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/gle84xKnB5Iyy2HJZZSZ.webp",
|
| 1750 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/ADkguH3UcK7WIEvqakVk.mp3"
|
| 1751 |
+
},
|
| 1752 |
+
{
|
| 1753 |
+
"id": "251",
|
| 1754 |
+
"title": "Lady Singham",
|
| 1755 |
+
"artist": "Kumaar, Santhosh, Ravi Basrur",
|
| 1756 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Q164w4hSesgcDiBTR7zj2.webp",
|
| 1757 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/JrGmSHiBix4TCG0RJ7Rw.mp3"
|
| 1758 |
+
},
|
| 1759 |
+
{
|
| 1760 |
+
"id": "252",
|
| 1761 |
+
"title": "Teri Meri - Hindi",
|
| 1762 |
+
"artist": "Santhosh, Airaa Udupi, Ravi Basrur",
|
| 1763 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/gqIRIOWKk6Vt5XVpZeYm.webp",
|
| 1764 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/uoxEzs71B47aFV1ydwo1.mp3"
|
| 1765 |
+
},
|
| 1766 |
+
{
|
| 1767 |
+
"id": "253",
|
| 1768 |
+
"title": "Honey Bunny",
|
| 1769 |
+
"artist": "Sachin-Jigar, Ash King1, Shruti Dhasmana, Shubham Kabra",
|
| 1770 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/J252gbYs3hoLqtwSbrBR.webp",
|
| 1771 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/cdm07ZulTrbtBcR8jzLB.mp3"
|
| 1772 |
+
},
|
| 1773 |
+
{
|
| 1774 |
+
"id": "254",
|
| 1775 |
+
"title": "Jai Bajrangbali",
|
| 1776 |
+
"artist": "Srikrishna",
|
| 1777 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Q164w4hSesgcDiBTR7zj2.webp",
|
| 1778 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/JKQ44uXjOH3CG4jGl7Qn.mp3"
|
| 1779 |
+
},
|
| 1780 |
+
{
|
| 1781 |
+
"id": "255",
|
| 1782 |
+
"title": "Thaaein Thaaein",
|
| 1783 |
+
"artist": "Sachet-Parampara, Shreya Ghoshal, Sachet Tandon, Kausar Munir",
|
| 1784 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/ZUnlBad11Cs3uWQhe5mi.webp",
|
| 1785 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/Ap7fgfMeo7nfQVENwzBa.mp3"
|
| 1786 |
+
},
|
| 1787 |
+
{
|
| 1788 |
+
"id": "256",
|
| 1789 |
+
"title": "Sun Mere Bhai",
|
| 1790 |
+
"artist": "Zain Desai, Yasser Desai1, Viplove Rajdeo",
|
| 1791 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/ui2TbsfmUWjWOn9w5QC3.webp",
|
| 1792 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/DI70TZZGyIQYpziLcmG6.mp3"
|
| 1793 |
+
},
|
| 1794 |
+
{
|
| 1795 |
+
"id": "257",
|
| 1796 |
+
"title": "Maiyya",
|
| 1797 |
+
"artist": "Sachet-Parampara, Sachet Tandon, Parampara Tandon, Kausar Munir",
|
| 1798 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/ZUnlBad11Cs3uWQhe5mi.webp",
|
| 1799 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/8oxqxA8nhqIp5fDZEp6Q.mp3"
|
| 1800 |
+
},
|
| 1801 |
+
{
|
| 1802 |
+
"id": "258",
|
| 1803 |
+
"title": "Tere Liye Jaanam",
|
| 1804 |
+
"artist": "Arko, Sameer Anjaan, Nikhita Gandhi, Anand-Milind",
|
| 1805 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/Xa4yX9MWElk1Za1uBZrC.webp",
|
| 1806 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/DHxKhtuE10gthxUT8MrN.mp3"
|
| 1807 |
+
},
|
| 1808 |
+
{
|
| 1809 |
+
"id": "259",
|
| 1810 |
+
"title": "Pyaar Bhi Jhootha",
|
| 1811 |
+
"artist": "Tanishk Bagchi, Yo Yo Honey Singh1, B Praak, R.D. Burman",
|
| 1812 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/ui2TbsfmUWjWOn9w5QC3.webp",
|
| 1813 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/OMko3WtrlxEpxPe1W8oH.mp3"
|
| 1814 |
+
},
|
| 1815 |
+
{
|
| 1816 |
+
"id": "260",
|
| 1817 |
+
"title": "Jaadu",
|
| 1818 |
+
"artist": "Sachet-Parampara, Sachet Tandon, Kausar Munir",
|
| 1819 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/ZUnlBad11Cs3uWQhe5mi.webp",
|
| 1820 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/oT4FdL9Xx6rfQbBTrcZz.mp3"
|
| 1821 |
+
},
|
| 1822 |
+
{
|
| 1823 |
+
"id": "261",
|
| 1824 |
+
"title": "Hukkush Phukkush",
|
| 1825 |
+
"artist": "Tanishk Bagchi, Sonu Nigam, Som",
|
| 1826 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/pcjg6hY2ONjc1rxca9fJ.webp",
|
| 1827 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/Gjtb03l1omxVi2SRAIRb.mp3"
|
| 1828 |
+
},
|
| 1829 |
+
{
|
| 1830 |
+
"id": "262",
|
| 1831 |
+
"title": "Beiraada",
|
| 1832 |
+
"artist": "Sachet-Parampara, Sachet Tandon, Parampara Tandon, Rashmi Virag",
|
| 1833 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/pcjg6hY2ONjc1rxca9fJ.webp",
|
| 1834 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/itfWsWE02njjVhS2olUU.mp3"
|
| 1835 |
+
},
|
| 1836 |
+
{
|
| 1837 |
+
"id": "263",
|
| 1838 |
+
"title": "Ami Je Tomar 3.0",
|
| 1839 |
+
"artist": "Amaal Mallik, Shreya Ghoshal, Sameer, Pritam",
|
| 1840 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/pcjg6hY2ONjc1rxca9fJ.webp",
|
| 1841 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/NUCJCREUZU9VHfZWFKXN.mp3"
|
| 1842 |
+
},
|
| 1843 |
+
{
|
| 1844 |
+
"id": "264",
|
| 1845 |
+
"title": "Yolo (Hindi)",
|
| 1846 |
+
"artist": "Mellow D, Devi Sri Prasad, Shilpa Rao",
|
| 1847 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/33k6LFth69T5TIh9Zqvn.webp",
|
| 1848 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/rtXpry7gkaIlIH6cm9OB.mp3"
|
| 1849 |
+
},
|
| 1850 |
+
{
|
| 1851 |
+
"id": "265",
|
| 1852 |
+
"title": "Jaana Samjho Na",
|
| 1853 |
+
"artist": "Lijo George-Dj Chetas, Aditya Rikhari, Tulsi Kumar",
|
| 1854 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/pcjg6hY2ONjc1rxca9fJ.webp",
|
| 1855 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/MPrqWUuugDBNqxDcSgsT.mp3"
|
| 1856 |
+
},
|
| 1857 |
+
{
|
| 1858 |
+
"id": "266",
|
| 1859 |
+
"title": "Be My Mehbooba",
|
| 1860 |
+
"artist": "Amaal Mallik, Darshan Raval, Neeti Mohan, Kumaar",
|
| 1861 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/ui2TbsfmUWjWOn9w5QC3.webp",
|
| 1862 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/CBmBGcHwHfhSMfAkRq6M.mp3"
|
| 1863 |
+
},
|
| 1864 |
+
{
|
| 1865 |
+
"id": "267",
|
| 1866 |
+
"title": "Akhiyaan De Kol",
|
| 1867 |
+
"artist": "Shilpa Rao",
|
| 1868 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/ZUnlBad11Cs3uWQhe5mi.webp",
|
| 1869 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/UljVIdbgjNV0C3qHbaRu.mp3"
|
| 1870 |
+
},
|
| 1871 |
+
{
|
| 1872 |
+
"id": "268",
|
| 1873 |
+
"title": "Pan India Area King",
|
| 1874 |
+
"artist": "Paal Dabba, Achint, Varun Grover",
|
| 1875 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/g7hMNXqo8uitYYM0pAtS.webp",
|
| 1876 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/8QdqTxmmkc86gmW7I6xe.mp3"
|
| 1877 |
+
},
|
| 1878 |
+
{
|
| 1879 |
+
"id": "269",
|
| 1880 |
+
"title": "Jiya",
|
| 1881 |
+
"artist": "Varun Grover, Shaheen Bhatt, Achint",
|
| 1882 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/g7hMNXqo8uitYYM0pAtS.webp",
|
| 1883 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/lYYANUiE4sCZeEDPspEe.mp3"
|
| 1884 |
+
},
|
| 1885 |
+
{
|
| 1886 |
+
"id": "270",
|
| 1887 |
+
"title": "Jigra Acoustic Version",
|
| 1888 |
+
"artist": "Varun Grover, Vedang Raina, Achint",
|
| 1889 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/g7hMNXqo8uitYYM0pAtS.webp",
|
| 1890 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/J4k3sdHAxkcrGkRe1SvE.mp3"
|
| 1891 |
+
},
|
| 1892 |
+
{
|
| 1893 |
+
"id": "271",
|
| 1894 |
+
"title": "Bhool Bhulaiya 3 (Title Track)",
|
| 1895 |
+
"artist": "Diljit Dosanjh, Pitbull",
|
| 1896 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/pcjg6hY2ONjc1rxca9fJ.webp",
|
| 1897 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/bplctwJvLHmCS5BxHBvF.mp3"
|
| 1898 |
+
},
|
| 1899 |
+
{
|
| 1900 |
+
"id": "272",
|
| 1901 |
+
"title": "Tumhe Apna Banane Ki (90S Revisited)",
|
| 1902 |
+
"artist": "Anuradha Paudwal, Kumar Sanu, Sameer",
|
| 1903 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/r1aToZ0ZYCFmFjFv5rd8.webp",
|
| 1904 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/KDEjz50z72TCSvrbibvp.mp3"
|
| 1905 |
+
},
|
| 1906 |
+
{
|
| 1907 |
+
"id": "273",
|
| 1908 |
+
"title": "Na Na Na Na Na Re",
|
| 1909 |
+
"artist": "Daler Mehndi1, Gurdeep Mehndi, Anand-Milind, Sameer",
|
| 1910 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/r1aToZ0ZYCFmFjFv5rd8.webp",
|
| 1911 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/ObR1n1P7dxkZvphlKeEV.mp3"
|
| 1912 |
+
},
|
| 1913 |
+
{
|
| 1914 |
+
"id": "274",
|
| 1915 |
+
"title": "Marjaaniya 3",
|
| 1916 |
+
"artist": "Sachin-Jigar, Soumyadeep, Priya Saraiya",
|
| 1917 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/r1aToZ0ZYCFmFjFv5rd8.webp",
|
| 1918 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/deEC0oyrE7M5ot567bnX.mp3"
|
| 1919 |
+
},
|
| 1920 |
+
{
|
| 1921 |
+
"id": "275",
|
| 1922 |
+
"title": "Marjaaniya 2",
|
| 1923 |
+
"artist": "Sachin-Jigar, Raghav Chaitanya, Priya Saraiya",
|
| 1924 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/r1aToZ0ZYCFmFjFv5rd8.webp",
|
| 1925 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/FVwztunYYmbj8yI2FUkg.mp3"
|
| 1926 |
+
},
|
| 1927 |
+
{
|
| 1928 |
+
"id": "276",
|
| 1929 |
+
"title": "Marjaaniya",
|
| 1930 |
+
"artist": "Sachin-Jigar, Varun Jain, Priya Saraiya",
|
| 1931 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/r1aToZ0ZYCFmFjFv5rd8.webp",
|
| 1932 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/Coxo9JM5I9kEOWWIY2uX.mp3"
|
| 1933 |
+
},
|
| 1934 |
+
{
|
| 1935 |
+
"id": "277",
|
| 1936 |
+
"title": "Jigra Title Track",
|
| 1937 |
+
"artist": "Varun Grover, Vedang Raina, Achint",
|
| 1938 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/g7hMNXqo8uitYYM0pAtS.webp",
|
| 1939 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/OZbUCBvwAtavvl9gH1Yj.mp3"
|
| 1940 |
+
},
|
| 1941 |
+
{
|
| 1942 |
+
"id": "278",
|
| 1943 |
+
"title": "Halki Khanak Si",
|
| 1944 |
+
"artist": "Shellee, Rekha Bhardwaj, Karan Kulkarni",
|
| 1945 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/TRjaIEY2gmFiXe5cViZl.webp",
|
| 1946 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/Q6eXYygsFefZ1qIdzjs5.mp3"
|
| 1947 |
+
},
|
| 1948 |
+
{
|
| 1949 |
+
"id": "279",
|
| 1950 |
+
"title": "Sajna Ve Sajna",
|
| 1951 |
+
"artist": "Sunidhi Chauhan, Divya Kumar, Sandesh Shandilya, Irshad Kamil, White Noise Collectives",
|
| 1952 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/r1aToZ0ZYCFmFjFv5rd8.webp",
|
| 1953 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/teeRVisP3ZZqpPvMlkjo.mp3"
|
| 1954 |
+
},
|
| 1955 |
+
{
|
| 1956 |
+
"id": "280",
|
| 1957 |
+
"title": "Chumma",
|
| 1958 |
+
"artist": "Sachin-Jigar, Pawan Singh, Vayu, Rupali Jagga, Rupesh Mishra, Mansa Jimmy",
|
| 1959 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/r1aToZ0ZYCFmFjFv5rd8.webp",
|
| 1960 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/kw0HVHLLwA5Q9Cc9N9S4.mp3"
|
| 1961 |
+
},
|
| 1962 |
+
{
|
| 1963 |
+
"id": "281",
|
| 1964 |
+
"title": "Raanjhan",
|
| 1965 |
+
"artist": "Sachet-Parampara, Parampara Tandon, Kausar Munir",
|
| 1966 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/ZUnlBad11Cs3uWQhe5mi.webp",
|
| 1967 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/6lmbWsZfBSFsJZqcqQ1E.mp3"
|
| 1968 |
+
},
|
| 1969 |
+
{
|
| 1970 |
+
"id": "282",
|
| 1971 |
+
"title": "Tenu Sang Rakhna",
|
| 1972 |
+
"artist": "Varun Grover, Achint, Arijit Singh, Anumita Nadesan",
|
| 1973 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/g7hMNXqo8uitYYM0pAtS.webp",
|
| 1974 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/EhwC5eBbnqk1QWx5GeRO.mp3"
|
| 1975 |
+
},
|
| 1976 |
+
{
|
| 1977 |
+
"id": "283",
|
| 1978 |
+
"title": "Mushkil Hai",
|
| 1979 |
+
"artist": "Sachin-Jigar, Vishal Mishra, Hansika Pareek, Som",
|
| 1980 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/r1aToZ0ZYCFmFjFv5rd8.webp",
|
| 1981 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/ddjtbRrMmY1fcUBzgLYz.mp3"
|
| 1982 |
+
},
|
| 1983 |
+
{
|
| 1984 |
+
"id": "284",
|
| 1985 |
+
"title": "Rang Hai Ri",
|
| 1986 |
+
"artist": "Akshay And IP, Sudhir Yaduvanshi, Akshay Raheja, IP Singh",
|
| 1987 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/mAbef9rmq9D9VhOdPt36.jpeg",
|
| 1988 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/6IGReNmiospAlNqSXAtT.mp3"
|
| 1989 |
+
},
|
| 1990 |
+
{
|
| 1991 |
+
"id": "285",
|
| 1992 |
+
"title": "Election Song",
|
| 1993 |
+
"artist": "Gnanakaravel, K, Mukesh Mohamed",
|
| 1994 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/CZDs82h9b9jEGRpmcjVe.jpeg",
|
| 1995 |
+
"audioUrl": "https://pagalgana.com/storage/audios2/jXj8q7gIKofcGLtwWKI0.mp3"
|
| 1996 |
+
},
|
| 1997 |
+
{
|
| 1998 |
+
"id": "286",
|
| 1999 |
+
"title": "Yeh Dil Deewana",
|
| 2000 |
+
"artist": "Sonu Nigam",
|
| 2001 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/HYTWjK64iMJREt8DqUog.webp",
|
| 2002 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/fwCRzdrniKlmD8C2yCdd.mp3"
|
| 2003 |
+
},
|
| 2004 |
+
{
|
| 2005 |
+
"id": "287",
|
| 2006 |
+
"title": "Pyaar Kartey Hain",
|
| 2007 |
+
"artist": "Payal Dev, Laqshay Kapoor, Kunaal Vermaa",
|
| 2008 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/fxvH8HFgHwlSrDrQLtvL2.jpeg",
|
| 2009 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/L79RJ8cRqJdVoH2riaoB.mp3"
|
| 2010 |
+
},
|
| 2011 |
+
{
|
| 2012 |
+
"id": "288",
|
| 2013 |
+
"title": "Saccha Wala Pyaar",
|
| 2014 |
+
"artist": "Tulsi Kumar, Vishal Mishra, Tanishk Bagchi",
|
| 2015 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/cTfz6UtptR5eycu3vhQv.jpeg",
|
| 2016 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/SrevQScCyOhwd5Z9KynX.mp3"
|
| 2017 |
+
},
|
| 2018 |
+
{
|
| 2019 |
+
"id": "289",
|
| 2020 |
+
"title": "ROKO 2MG",
|
| 2021 |
+
"artist": "Emiway Bantai",
|
| 2022 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/4PYLym9eThSCQWgpuFKW.jpeg",
|
| 2023 |
+
"audioUrl": "https://pagalgana.com/storage/audios2/MoVq9JwyVnyGC9zkwlp5.mp3"
|
| 2024 |
+
},
|
| 2025 |
+
{
|
| 2026 |
+
"id": "290",
|
| 2027 |
+
"title": "Millionaire",
|
| 2028 |
+
"artist": "Yo Yo Honey Singh1",
|
| 2029 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/5K5PKKI6JPUCYxK3rk8s.jpeg",
|
| 2030 |
+
"audioUrl": "https://pagalgana.com/storage/audios2/JSEJl2xe0KtS6hBU9HGe.mp3"
|
| 2031 |
+
},
|
| 2032 |
+
{
|
| 2033 |
+
"id": "291",
|
| 2034 |
+
"title": "Khoobsurat",
|
| 2035 |
+
"artist": "Sachin, Jigar, Vishal Mishra",
|
| 2036 |
+
"albumArtUrl": "https://pagalgana.com/storage/thumbimages/album/stree-2-bollywood-2024.jpg",
|
| 2037 |
+
"audioUrl": "https://pagalgana.com/storage/audios/bollywood/khoobsurat-stree-2-sach-Bollyw-2024-128.mp3"
|
| 2038 |
+
},
|
| 2039 |
+
{
|
| 2040 |
+
"id": "292",
|
| 2041 |
+
"title": "Dhola",
|
| 2042 |
+
"artist": "Millind Gaba",
|
| 2043 |
+
"albumArtUrl": "https://pagalgana.com/storage/thumbimages/album/dhola-202408.jpg",
|
| 2044 |
+
"audioUrl": "https://pagalgana.com/storage/audios/hindi-pop-mp3-songs/dhola-millind-gaba-2024-medium.mp3"
|
| 2045 |
+
},
|
| 2046 |
+
{
|
| 2047 |
+
"id": "293",
|
| 2048 |
+
"title": "Do U Know",
|
| 2049 |
+
"artist": "Diljit Dosanjh",
|
| 2050 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/d2fJVKz93eGwggm0gqh2.jpeg",
|
| 2051 |
+
"audioUrl": "https://pagalgana.com/storage/audios/bollywood/do-u-know-khel-mein-dilj-Bollyw-2024-128.mp3"
|
| 2052 |
+
},
|
| 2053 |
+
{
|
| 2054 |
+
"id": "294",
|
| 2055 |
+
"title": "Party Fever",
|
| 2056 |
+
"artist": "Payal Dev, Agni",
|
| 2057 |
+
"albumArtUrl": "https://pagalgana.com/storage/thumbimages/album/party-fever-202408.jpg",
|
| 2058 |
+
"audioUrl": "https://pagalgana.com/storage/audios/hindi-pop-mp3-songs/party-fever-payal-dev-2024-medium.mp3"
|
| 2059 |
+
},
|
| 2060 |
+
{
|
| 2061 |
+
"id": "295",
|
| 2062 |
+
"title": "Baarish Banke",
|
| 2063 |
+
"artist": "Chetan Thakur, Raahi",
|
| 2064 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/AYglM1bC7UfDybEDbPQg.jpeg",
|
| 2065 |
+
"audioUrl": "https://pagalgana.com/storage/audios2/EroRwRVGRSlmTBKvfAv1.mp3"
|
| 2066 |
+
},
|
| 2067 |
+
{
|
| 2068 |
+
"id": "296",
|
| 2069 |
+
"title": "Hauli Hauli",
|
| 2070 |
+
"artist": "Guru Randhawa, Yo Yo Honey Singh1, Neha Kakkar",
|
| 2071 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/d2fJVKz93eGwggm0gqh2.jpeg",
|
| 2072 |
+
"audioUrl": "https://pagalgana.com/storage/audios/bollywood/hauli-khel-mein-gu-Bollyw-2024-128.mp3"
|
| 2073 |
+
},
|
| 2074 |
+
{
|
| 2075 |
+
"id": "297",
|
| 2076 |
+
"title": "Dheere Dheere - Devara Part 1",
|
| 2077 |
+
"artist": "Shilpa Rao",
|
| 2078 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/lsyiboSPzLb9XLHANdxL.jpeg",
|
| 2079 |
+
"audioUrl": "https://pagalgana.com/storage/audios/bollywood/dheere-devara-part-1-shil-Bollyw-2024-128.mp3"
|
| 2080 |
+
},
|
| 2081 |
+
{
|
| 2082 |
+
"id": "298",
|
| 2083 |
+
"title": "Aayi Nai - Stree 2",
|
| 2084 |
+
"artist": "Pawan Singh, Simran Choudhary, Divya Kumar",
|
| 2085 |
+
"albumArtUrl": "https://pagalgana.com/storage/thumbimages/album/stree-2-bollywood-2024.jpg",
|
| 2086 |
+
"audioUrl": "https://pagalgana.com/storage/audios/bollywood/aayi-nai-stree-2-paw-Bollyw-2024-128.mp3"
|
| 2087 |
+
},
|
| 2088 |
+
{
|
| 2089 |
+
"id": "299",
|
| 2090 |
+
"title": "Tumse Milke - Tedi Medi",
|
| 2091 |
+
"artist": "Sameer Khan",
|
| 2092 |
+
"albumArtUrl": "https://pagalgana.com/storage/thumbimages/album/tedi-medi-bollywood-2024.jpg",
|
| 2093 |
+
"audioUrl": "https://pagalgana.com/storage/audios/bollywood/tumse-milke-tedi-medi-same-Bollyw-2024-128.mp3"
|
| 2094 |
+
},
|
| 2095 |
+
{
|
| 2096 |
+
"id": "300",
|
| 2097 |
+
"title": "Punjabi Munde - Ghudchadi",
|
| 2098 |
+
"artist": "Sukhbir1, Tulsi Kumar, Yash Narvekar, Priyani Vani Pandit",
|
| 2099 |
+
"albumArtUrl": "https://pagalgana.com/storage/thumbimages/album/ghudchadi-bollywood-2024.jpg",
|
| 2100 |
+
"audioUrl": "https://pagalgana.com/storage/audios/bollywood/punjabi-munde-ghudchadi-sukhb-Bollyw-2024-128.mp3"
|
| 2101 |
+
},
|
| 2102 |
+
{
|
| 2103 |
+
"id": "301",
|
| 2104 |
+
"title": "Haste Haste - Phir Aayi Hasseen Dillruba",
|
| 2105 |
+
"artist": "Sachet Tandon",
|
| 2106 |
+
"albumArtUrl": "https://pagalgana.com/storage/thumbimages/album/phir-aayi-hasseen-dillruba-bollywood-2024.jpg",
|
| 2107 |
+
"audioUrl": "https://pagalgana.com/storage/audios/bollywood/haste-phir-aayi-hasseen-dillruba-sach-Bollyw-2024-128.mp3"
|
| 2108 |
+
},
|
| 2109 |
+
{
|
| 2110 |
+
"id": "302",
|
| 2111 |
+
"title": "Gore Gore Mukhde Pe - Ishq Vishk Rebound",
|
| 2112 |
+
"artist": "Udit Narayan, Badshah, Nikhita Gandhi",
|
| 2113 |
+
"albumArtUrl": "https://pagalgana.com/storage/thumbimages/album/ishq-vishk-rebound-bollywood-2024.jpg",
|
| 2114 |
+
"audioUrl": "https://pagalgana.com/storage/audios/bollywood/gore-mukhde-pe-ishq-vishk-rebound-ud-Bollyw-2024-128.mp3"
|
| 2115 |
+
},
|
| 2116 |
+
{
|
| 2117 |
+
"id": "303",
|
| 2118 |
+
"title": "Duur Na Karin - Khel Khel Mein",
|
| 2119 |
+
"artist": "Vishal Mishra, Zahrah S Khan",
|
| 2120 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/d2fJVKz93eGwggm0gqh2.jpeg",
|
| 2121 |
+
"audioUrl": "https://pagalgana.com/storage/audios/bollywood/duur-na-karin-khel-mein-vish-Bollyw-2024-128.mp3"
|
| 2122 |
+
},
|
| 2123 |
+
{
|
| 2124 |
+
"id": "304",
|
| 2125 |
+
"title": "Shaukan - Ulajh",
|
| 2126 |
+
"artist": "Neha Kakkar, Jubin Nautiyal, Shashwat Sachdev",
|
| 2127 |
+
"albumArtUrl": "https://pagalgana.com/storage/thumbimages/album/ulajh-bollywood-2024.jpg",
|
| 2128 |
+
"audioUrl": "https://pagalgana.com/storage/audios/bollywood/shaukan-ulajh-ne-Bollyw-2024-128.mp3"
|
| 2129 |
+
},
|
| 2130 |
+
{
|
| 2131 |
+
"id": "305",
|
| 2132 |
+
"title": "Thangalaan Oppari Song",
|
| 2133 |
+
"artist": "Arivu, G.V. Prakash Kumar, Kidakuzhi Mariyammal",
|
| 2134 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/He8l1goBUEOXDZiLzohL.jpeg",
|
| 2135 |
+
"audioUrl": "https://pagalgana.com/storage/audios2/IPAZD6TVd47vzlRn9c5h.mp3"
|
| 2136 |
+
},
|
| 2137 |
+
{
|
| 2138 |
+
"id": "306",
|
| 2139 |
+
"title": "Aruvadai",
|
| 2140 |
+
"artist": "Chiyaan Vikram, Uma Devi, G.V. Prakash Kumar, Sindhuri Vishal, Mathichiyam Bala, Suganthi",
|
| 2141 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/He8l1goBUEOXDZiLzohL.jpeg",
|
| 2142 |
+
"audioUrl": "https://pagalgana.com/storage/audios2/EuIpM3Y4SQnIcvdeogme.mp3"
|
| 2143 |
+
},
|
| 2144 |
+
{
|
| 2145 |
+
"id": "307",
|
| 2146 |
+
"title": "Flight Veenama",
|
| 2147 |
+
"artist": "Karthik Rodriguez",
|
| 2148 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/73VTd7hHz5nP0cqTaMD0.webp",
|
| 2149 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/yXtyE21zI8YF49Ixt7a8.mp3"
|
| 2150 |
+
},
|
| 2151 |
+
{
|
| 2152 |
+
"id": "308",
|
| 2153 |
+
"title": "Pelli Kani Prasadu",
|
| 2154 |
+
"artist": "Karthik Rodriguez",
|
| 2155 |
+
"albumArtUrl": "https://pagalgana.com/storage/album_images/lgTzj7ZPL4f2OjGiJ3KM.webp",
|
| 2156 |
+
"audioUrl": "https://pagalgana.com/storage/audio_files/a5hGsJeoUGPnYyU7Gj8x.mp3"
|
| 2157 |
}
|
| 2158 |
+
]
|