action weatherbit_get_current_city_city_country_country { label: "Returns a Current Observation - Given City and/or State, Country." description: "Returns a Current Observation - Given a city in the format of City,ST or City. The state, and country parameters can be provided to make the search more accurate." provider: weatherbit method: GET path: "/current?city={city}&country={country}" encoding: json input: { type: "object" properties: { callback: { type: "string" } city: { type: "string" } country: { type: "string" } include: { type: "string" } key: { type: "string" } lang: { type: "string" } marine: { type: "string" } state: { type: "string" } units: { type: "string" } } required: ["city", "country", "key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }