v1
latestSwagger 2.02026-07-148830.4 KBREST-Endpoints
Get mobile apps
Visits the URL and checks if there are mobile apps on them and returns the found ones.
Will by default return the app identifiers and not the full URL to the apps. To return URLs instead set the parameter "return_urls" to true.
The URLs can also be created manually like this:
| Property | URL |
|---|---|
| android | https://play.google.com/store/apps/details?id={ID} |
| ios | https://itunes.apple.com/us/app/app-name/id{ID} |
Properties only get set when a value for it has been found. That means that if no app has been found only the property "url" will be set.
get/Urls/apps
Query parameters
urlstring required
The URL of the website to query
return_urlsboolean
Returns app URLs instead of the identifiers
browser_renderboolean
If the page should be fully rendered with a browser to extract data. The request will then cost 5 credits instead of 1!
Response
OK - Successful Request
Example response
{
"android": "com.example",
"ios": "1234567890",
"url": "http://example.com/product_1.html"
}