action greip_get_iplookup { label: "get_IPLookup" description: "IPLookup endpoint: Returns the geolocation data of a specific IP Address." provider: greip method: GET path: "/IPLookup" encoding: json input: { type: "object" properties: { format: { type: "string" } ip: { type: "string" } key: { type: "string" } lang: { type: "string" } params: { type: "string" } } required: ["ip", "key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }