Google Play Store API

Fetches app information from Google Play Store.

Base URL

"https://openapi-idk8.onrender.com"

Endpoint

  • GET /goplaystore/:search: Search for apps on Google Play Store based on the provided query.

GET /goplaystore/:search

Searches for apps on Google Play Store based on the provided query.

Path Parameter

  • :search (string): The search query used to search for apps on Google Play Store.

Sample Request

GET "https://openapi-idk8.onrender.com/goplaystore/music"

Sample Response

{
  "api_information": {
    "api_name": "Google Play Store API",
    "description": "Fetches app information from Google Play Store.",
    "author": "OpenAPI"
  },
  "results": [
    {
      "title": "YouTube Music",
      "rating": "4.3",
      "description": "YouTube Music is a streaming service that allows you to enjoy a nearly endless catalog of songs.",
      "url": "https://play.google.com/store/apps/details?id=com.google.android.apps.youtube.music"
    },
    {
      "title": "Spotify: Listen to podcasts & find music you love",
      "rating": "4.5",
      "description": "Discover new music, podcasts, and songs.",
      "url": "https://play.google.com/store/apps/details?id=com.spotify.music"
    },
    // More results here...
  ]
}

Error Handling

If there is an error or no apps are found matching the query, the API responds with an appropriate error message and status code.