action weatherbit_get_current_city_id_city_id { label: "Returns a current observation by city id." description: "Returns current weather observation - Given a City ID. " provider: weatherbit method: GET path: "/current?city_id={city_id}" encoding: json input: { type: "object" properties: { callback: { type: "string" } city_id: { type: "string" } include: { type: "string" } key: { type: "string" } lang: { type: "string" } marine: { type: "string" } units: { type: "string" } } required: ["city_id", "key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }