Light Mode
GetAllReadings-Weather Data
TestedGET
https://kfca.sa/IntAPI/api/WeatherStation/GetAllReadingsLast modified: 2 months ago
Maintainer:
This API provides real-time weather data for a King Fahd Causeway .
Each entry in the JSON array includes:
id: A unique identifier for the weather data entry.
airTemperature: The current air temperature in degrees Celsius.
windSpeed: The current wind speed in meters per second.
humidity: The current humidity level as a percentage.
This API helps users access up-to-date weather information, including temperature, wind speed, and humidity, for monitoring and analysis purposes.
Request
Header Params
Cache-Control
string
optional
Example:
<calculated when request is sent>
Cookie
string
optional
Example:
<calculated when request is sent>
Host
string
optional
Example:
kfca.sa
User-Agent
string
optional
Example:
Apidog/1.0.0 (https://apidog.com)
Accept
string
optional
Example:
*/*
Accept-Encoding
string
optional
Example:
gzip, deflate, br
Connection
string
optional
Example:
keep-alive
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
array of:
id
string
optional
A unique identifier for the weather data entry
airTemperature
string
optional
The current air temperature in degrees Celsius
windSpeed
string
optional
The current wind speed in meters per second.
humidity
string
optional
The current humidity level as a percentage.
Example
[
{
"id": "1",
"airTemperature": "19.45",
"windSpeed": "7.88",
"humidity": "73.85"
}
]
Last modified: 2 months ago