action mon_voyage_pas_cher_get_cities { label: "Search all cities from lat/long or countrycode" description: "Search cities according to given criterias. Either lat/long + radius or country code. A limit can be given but cannot exceed 50 results.
A significant city will be defined according to the pourcent of population within a country." provider: mon_voyage_pas_cher method: GET path: "/cities/findcitiesfromlatlong" encoding: json input: { type: "object" properties: { countrycode: { type: "string" } language: { type: "string" } limit: { type: "string" } location: { type: "string" } offset: { type: "string" } radius: { type: "string" } sort: { type: "string" } } required: ["language", "sort"] additionalProperties: false } output: { type: "object" additionalProperties: true } }