Temperature Conversion
The /convert endpoint allows you to convert multiple temperature units between each other. You need to provide a value to convert, a source unit, and the unit you want to convert to.
GET/v2/convert
Parameters
| Parameter | Required | Description |
|---|---|---|
value | Yes | The value to convert |
from | Yes | The source unit (celsius, fahrenheit, or kelvin) |
to | Yes | The unit to convert to (celsius, fahrenheit, or kelvin) |
Available Units
celsius: Degrees Celsiusfahrenheit: Degrees Fahrenheitkelvin: Kelvin
Request Example
GET /v2/convert?value=30&from=celsius&to=kelvinResponse
json
{
"from": "celsius",
"to": "kelvin",
"value": 30,
"result": 303.15
}cURL
bash
curl -X GET "https://api.sylvain.pro/v2/convert?value=30&from=celsius&to=kelvin"Error Handling
If the value, from, or to field is empty or invalid, an error will be returned.