Fetches app information from Google Play Store.
"https://openapi-idk8.onrender.com"
GET /goplaystore/:search
: Search for apps on Google Play Store based on the provided query.Searches for apps on Google Play Store based on the provided query.
:search
(string): The search query used to search for apps on Google Play Store.GET "https://openapi-idk8.onrender.com/goplaystore/music"
{
"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...
]
}
If there is an error or no apps are found matching the query, the API responds with an appropriate error message and status code.