Giter VIP home page Giter VIP logo

gaanapy's Introduction

๐ŸŽถ GaanaPy

GaanaPy is an unofficial JSON API for Gaana, an Indian Music Streaming Service.

image

Live API: https://api.nikomusic.tk

๐Ÿ“– Table Of Contents

๐ŸŽง Features

The API can get the following details for a specific track in JSON format (Other Options Include: Albums, Artists, Trending, New Releases and Playlists):
  • Track Name
  • Track Duration
  • Track Artwork
  • Track URL
  • Track Language
  • Artist Name
  • Artist Artwork
  • Album Name
  • Album URL
  • Album Artwork
  • Direct m3u8 Stream URLS
  • Release Date
  • Similar Songs, Albums, Artists
  • Top Charts
  • Trending Tracks
  • New Releases
  • .... and a lot more!
[
  {
    "seokey": "tyler-herro", 
    "album_seokey": "tyler-herro", 
    "track_id": "32408795", 
    "title": "Tyler Herro", 
    "artists": "Jack Harlow", 
    "artist_seokeys": "jack-harlow", 
    "artist_image": "https://a10.gaanacdn.com/gn_img/artists/XYybzrb2gz/Yybzn4Bgb2/size_m_1607927137.webp", 
    "album": "Tyler Herro", 
    "duration": "02:36", 
    "genres": "Hip Hop", 
    "is_explicit": 1, 
    "language": "English", 
    "label": "Generation Now/Atlantic", 
    "release_date": "2020-10-22", 
    "play_count": "<100K", 
    "favorite_count": 202, 
    "song_url": "https://gaana.com/song/tyler-herro", 
    "album_url": "https://gaana.com/album/tyler-herro", 
    "images": {
      "urls": {
        "large_artwork": "https://a10.gaanacdn.com/gn_img/albums/4Z9bqo3yQn/Z9bq2AG1Ky/size_l.jpg", 
        "medium_artwork": "https://a10.gaanacdn.com/gn_img/albums/4Z9bqo3yQn/Z9bq2AG1Ky/size_m.jpg", 
        "small_artwork": "https://a10.gaanacdn.com/gn_img/albums/4Z9bqo3yQn/Z9bq2AG1Ky/size_s.jpg"
      }
    }, 
    "stream_urls": {
      "urls": {
        "high_quality": "https://stream-cdn.gaana.com/songs/3/3487503/32408795/32408795_96.mp4.xvod/master.m3u8?sign=1656756551-MgfKD3auc3-0-b9f21d9ef627d1ec51c6d816268cc0ec", 
        "medium_quality": "https://stream-cdn.gaana.com/songs/3/3487503/32408795/32408795_64.mp4.xvod/master.m3u8?sign=1656756551-I1k1azFNJw-0-b111804c7ef97b484680be1d892d36d6", 
        "low_quality": "https://stream-cdn.gaana.com/songs/3/3487503/32408795/32408795_16.mp4.xvod/master.m3u8?sign=1656756551-I1k1azFNJw-0-b111804c7ef97b484680be1d892d36d6"
      }
    }
  }
]

๐Ÿ‘จโ€๐Ÿ”ง Usage

Search For Songs: (Requires a search query, limit is optional)
https://api.nikomusic.tk/songs/search?query=<insert-query-here>&limit=<insert-limit-here, eg. 5>

Example: Create a GET request or navigate to https://api.nikomusic.tk/songs/search?query=tyler herro to get a JSON response of song results in return.


Search For Albums: (Requires a search query, limit is optional)
https://api.nikomusic.tk/albums/search?query=<insert-query-here>&limit=<insert-limit-here, eg. 5>

Example: Create a GET request or navigate to https://api.nikomusic.tk/albums/search?query=all over the place to get a JSON response of album results in return.


Search For Artists: (Requires a search query, limit is optional)
https://api.nikomusic.tk/artists/search?query=<insert-query-here>&limit=<insert-limit-here, eg. 5>

Example: Create a GET request or navigate to https://api.nikomusic.tk/artists/search?query=KSI to get a JSON response of arist results in return.


Get Song Info: (Requires a SEOKEY)
https://api.nikomusic.tk/songs/info?seokey=SEOKEY

How do I find a song's seokey?:

  • In a URL, for example, https://gaana.com/song/tyler-herro, tyler-herro is the song's seokey.
  • Using Search For Songs, locate:
[
  {
    "seokey": "tyler-herro", 
  }
]

Example: Create a GET request or navigate to https://api.nikomusic.tk/songs/info?seokey=tyler-herro to get a JSON response of the song's info in return.


Get Album Info: (Requires a SEOKEY)
https://api.nikomusic.tk/albums/info?seokey=ALBUM_SEOKEY

How do I find an albums's seokey?:

  • In a URL, for example, https://gaana.com/album/tyler-herro, tyler-herro is the albums's seokey.
  • Using Search For Albums, locate:
[
  {
    "seokey": "tyler-herro", 
  }
]
[
  {
    "album_seokey": "tyler-herro", 
  }
]

Example: Create a GET request or navigate to https://api.nikomusic.tk/albums/info?seokey=tyler-herro to get a JSON response of the song's info in return.


Get Artist Info: (Requires a SEOKEY)
https://api.nikomusic.tk/artists/info?seokey=SEOKEY

How do I find an artists's seokey?:

[
  {
    "artist_seokeys": "jack-harlow", (There may be more than 1 seokey depending on the number of artists in the song.) 
  }
]

Example: Create a GET request or navigate to https://api.nikomusic.tk/artists/info?seokey=jack-harlow to get a JSON response of the artists's info in return.


Get Playlist Info: (Requires a SEOKEY)
https://api.nikomusic.tk/playlists/info?seokey=SEOKEY

How do I find a playlists's seokey?:

  • In a URL, for example, https://gaana.com/playlist/gaana-dj-gaana-international-top-50, gaana-dj-gaana-international-top-50 is the playlists's seokey.

Example: Create a GET request or navigate to https://api.nikomusic.tk/playlists/info?seokey=gaana-dj-gaana-international-top-50 to get a JSON response of the playlists's info in return.


Get Trending Tracks: (Requires a LANGUAGE)
https://api.nikomusic.tk/trending?lang=LANGUAGE

Language Options: English, Hindi, Punjabi, Telugu, Tamil etc. (Warning: Case Sensitive!). Defaults to Hindi if no language is provided or if an invalid language is entered.

Example: Create a GET request or navigate to https://api.nikomusic.tk/trending?lang=English to get a JSON response of the trending English songs in return.


Get New Releases: (Requires a LANGUAGE)
https://api.nikomusic.tk/newreleases?lang=LANGUAGE

Language Options: English, Hindi, Punjabi, Telugu, Tamil etc. (Warning: Case Sensitive!). Defaults to Hindi if no language is provided or if an invalid language is entered.

Example: Create a GET request or navigate to https://api.nikomusic.tk/newreleases?lang=English to get a JSON response of both new English songs and English albums in return.


Get Charts:
https://api.nikomusic.tk/charts

Example: Create a GET request or navigate to https://api.nikomusic.tk/charts to get a JSON response of the top charts.


Get Similar Songs:
https://api.nikomusic.tk/songs/similar?track_id=<insert-track-id-here>&limit=<insert-limit-here, eg. 5>

How do I find a songs's track_id?:

[
  {
    "track_id": "45031433",
  }
]

Example: Create a GET request or navigate to https://api.nikomusic.tk/songs/similar?track_id=45031433 to get a JSON response of similar songs in return.


Get Similar Albums:
https://api.nikomusic.tk/albums/similar?album_id=<insert-album-id-here>&limit=<insert-limit-here, eg. 5>

How do I find an albums's track_id?:

[
  {
    "album_id": "5764095",
  }
]

Example: Create a GET request or navigate to https://api.nikomusic.tk/albums/similar?album_id=5764095 to get a JSON response of similar albums in return.


Get Similar Artists:
https://api.nikomusic.tk/artists/similar?artist_id=<insert-artist-id-here>&limit=<insert-limit-here, eg. 5>

How do I find an artists's track_id?:

[
  {
    "artist_ids": "817522",
  }
]

Example: Create a GET request or navigate to https://api.nikomusic.tk/artists/similar?artist_id=5764095 to get a JSON response of similar artists in return.

๐Ÿ’ป Local Development

Clone the Repository

$ git clone https://github.com/ZingyTomato/GaanaPy

Enter /GaanaPy and install all the requirements using

$ pip3 install -r requirements.txt

Run the app using

$ python3 app.py

Navigate to: http://127.0.0.1:5000 to get started.

๐Ÿณ Docker Deployment

Deploy the API locally using the following Docker-Compose stack:

---
version: "2.1"
services:
  gaanapy:
    image: zingytomato/gaanapy:latest
    container_name: gaanapy
    ports:
      - 5000:5000 # External port can be changed 
    restart: unless-stopped

Navigate to: http://HOST_IP:5000 to get started.

๐Ÿฅ Contributing

Feel free to create an issue if you encounter any bugs or would like to suggest something!

gaanapy's People

Contributors

aceydocodes avatar zingytomato avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.