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-21T20:02:44.051Z",
  "created_at": "2025-04-21T20:02:44.051Z",
  "error": "apVREdSXcp0YiJO2",
  "id": "8152b0f8-c611-4630-9af6-9fb05f5bde35",
  "input": 4,
  "input_unit": "kelvin",
  "output": 27,
  "output_unit": "kelvin",
  "started_at": "2025-04-21T20:02:44.051Z",
  "status": "in_progress",
  "updated_at": "2025-04-21T20:02:44.051Z",
  "user_id": "3febb0e1-5587-4236-a419-670f97f2a67c"
}