API → UnitConvert temperature units

Parameters

Name

Type

Req.

  • input_unit

    string
    required
    Possible values
    • celsius:  Celsius <https://en.wikipedia.org/wiki/Celsius>
    • fahrenheit:  Fahrenheit <https://en.wikipedia.org/wiki/Fahrenheit>
    • kelvin:  Kelvin <https://en.wikipedia.org/wiki/Kelvin>
    • rankine:  Rankine <https://en.wikipedia.org/wiki/Rankine_scale>
  • output_unit

    string
    required
    Possible values
    • celsius:  Celsius <https://en.wikipedia.org/wiki/Celsius>
    • fahrenheit:  Fahrenheit <https://en.wikipedia.org/wiki/Fahrenheit>
    • kelvin:  Kelvin <https://en.wikipedia.org/wiki/Kelvin>
    • rankine:  Rankine <https://en.wikipedia.org/wiki/Rankine_scale>
  • value

    number
    required

Returns

  • 200 OK

    successful operation

    Name

    Type

    Req.

    body

    object
    optional
    Object Properties
    • completed_at

      string / ISO-8601
      optional
    • created_at

      string / ISO-8601
      optional
    • error

      string
      optional
    • id

      string / UUID
      optional
    • input

      number
      optional
    • input_unit

      string
      optional
      Possible values
      • celsius:  Celsius <https://en.wikipedia.org/wiki/Celsius>
      • fahrenheit:  Fahrenheit <https://en.wikipedia.org/wiki/Fahrenheit>
      • kelvin:  Kelvin <https://en.wikipedia.org/wiki/Kelvin>
      • rankine:  Rankine <https://en.wikipedia.org/wiki/Rankine_scale>
    • output

      number
      optional
    • output_unit

      string
      optional
      Possible values
      • celsius:  Celsius <https://en.wikipedia.org/wiki/Celsius>
      • fahrenheit:  Fahrenheit <https://en.wikipedia.org/wiki/Fahrenheit>
      • kelvin:  Kelvin <https://en.wikipedia.org/wiki/Kelvin>
      • rankine:  Rankine <https://en.wikipedia.org/wiki/Rankine_scale>
    • started_at

      string / ISO-8601
      optional
    • status

      string
      optional
      Possible values
      • queued:  The async API call is queued.
      • uploaded:  The async API call was uploaded to be converted.
      • in_progress:  The async API call is in progress.
      • completed:  The async API call has completed.
      • failed:  The async API call has failed.
    • updated_at

      string / ISO-8601
      optional
    • user_id

      string / UUID
      optional
get
/unit/conversion/temperature/{input_unit}/{output_unit}
$ curl "https://api.zoo.dev/unit/conversion/temperature/{input_unit}/{output_unit}" \
	--header "Authorization: Bearer $TOKEN"
200 OK
Response
{
  "completed_at": "2025-04-08T02:35:38.560Z",
  "created_at": "2025-04-08T02:35:38.560Z",
  "error": "3F6xiKe",
  "id": "73a7ad5a-5b66-4d02-86b1-5bd9610d4f47",
  "input": 28,
  "input_unit": "celsius",
  "output": 26,
  "output_unit": "fahrenheit",
  "started_at": "2025-04-08T02:35:38.560Z",
  "status": "queued",
  "updated_at": "2025-04-08T02:35:38.560Z",
  "user_id": "fd62891f-ddaf-40c1-b7bf-cf1d966301f5"
}