Temperature
temperature
Converts between different units of temperature.
Supported Units
The following units of temperature are supported:
Metric Units
C
, celsius
K
, kelvin
, kelvins
Imperial Units
F
, fahrenheit
R
, rankine
Request
URL:
https://api.convert.com.de/v1/temperature
Method: POST
Headers: Content-Type: application/json
Body
{
"access_token": "YOUR_LICENSE_KEY",
"text": "1",
"from": "C",
"to": "F"
}
Response
{
"status_code": 200,
"data": {
"value": 1,
"c_value": 33.8
}
}