GET api/Village/{village}/Weather
Get the weather forecast for the village
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
village | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of WeatherName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
Fetched | date |
None. |
|
ForDate | date |
None. |
|
HasData | boolean |
None. |
|
City | string |
None. |
|
State | string |
None. |
|
Zip | string |
None. |
|
Temp | integer |
None. |
|
FeelsLike | integer |
None. |
|
High | integer |
None. |
|
Low | integer |
None. |
|
Condition | integer |
None. |
|
Icon | string |
None. |
|
Humidity | integer |
None. |
|
WindSpeed | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": "77987ddf-6d32-4a58-8d77-ff2bb2dcc39c", "Fetched": "2025-06-03T04:43:52.680+00:00", "ForDate": "2025-06-03T04:43:52.680+00:00", "HasData": true, "City": "sample string 5", "State": "sample string 6", "Zip": "sample string 7", "Temp": 8, "FeelsLike": 9, "High": 10, "Low": 11, "Condition": 12, "Icon": "sample string 13", "Humidity": 14, "WindSpeed": 15 }, { "Id": "77987ddf-6d32-4a58-8d77-ff2bb2dcc39c", "Fetched": "2025-06-03T04:43:52.680+00:00", "ForDate": "2025-06-03T04:43:52.680+00:00", "HasData": true, "City": "sample string 5", "State": "sample string 6", "Zip": "sample string 7", "Temp": 8, "FeelsLike": 9, "High": 10, "Low": 11, "Condition": 12, "Icon": "sample string 13", "Humidity": 14, "WindSpeed": 15 } ]
application/xml, text/xml
Sample:
<ArrayOfWeather xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CaringVillage.Data.Entities"> <Weather> <City>sample string 5</City> <Condition>12</Condition> <FeelsLike>9</FeelsLike> <Fetched>2025-06-03T04:43:52.6801237+00:00</Fetched> <ForDate>2025-06-03T04:43:52.6801237+00:00</ForDate> <HasData>true</HasData> <High>10</High> <Humidity>14</Humidity> <Icon>sample string 13</Icon> <Id>77987ddf-6d32-4a58-8d77-ff2bb2dcc39c</Id> <Low>11</Low> <State>sample string 6</State> <Temp>8</Temp> <WindSpeed>15</WindSpeed> <Zip>sample string 7</Zip> </Weather> <Weather> <City>sample string 5</City> <Condition>12</Condition> <FeelsLike>9</FeelsLike> <Fetched>2025-06-03T04:43:52.6801237+00:00</Fetched> <ForDate>2025-06-03T04:43:52.6801237+00:00</ForDate> <HasData>true</HasData> <High>10</High> <Humidity>14</Humidity> <Icon>sample string 13</Icon> <Id>77987ddf-6d32-4a58-8d77-ff2bb2dcc39c</Id> <Low>11</Low> <State>sample string 6</State> <Temp>8</Temp> <WindSpeed>15</WindSpeed> <Zip>sample string 7</Zip> </Weather> </ArrayOfWeather>