v1

latestSwagger 2.02026-07-148830.4 KB
REST-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:

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

androidstring required

Android app

iosstring required

iOS app

urlstring required

The url of the website. Can be different to requested one if there were redirects

Example response

{
  "android": "com.example",
  "ios": "1234567890",
  "url": "http://example.com/product_1.html"
}
All 8 operations