action link_get_urls_apps { label: "Get mobile apps" description: "Visits the URL and checks if there are mobile apps on them and returns the found ones.\n\nWill 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.\n\nThe URLs can also be created manually like this:\n\n| Property | URL |\n| -------- | -------------------------------------------------- |\n| android | https://play.google.com/store/apps/details?id={ID} |\n| ios | https://itunes.apple.com/us/app/app-name/id{ID} |\n\nProperties 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.\n" provider: link method: GET path: "/Urls/apps" encoding: json input: { type: "object" properties: { browser_render: { type: "string" } return_urls: { type: "string" } url: { type: "string" } } required: ["url"] additionalProperties: false } output: { type: "object" additionalProperties: true } }