GET
/
v1
/
unit
curl --request GET \
  --url https://app.variable.global/api/v1/unit \
  --header 'Authorization: Bearer <token>'
[
  {
    "code": "kg",
    "name": "Kilogram",
    "type": "weight"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
A list of units
code
string
Example:

"kg"

name
string
Example:

"Kilogram"

type
string
Example:

"weight"