GET
/
prices
/
units
List price units
curl --request GET \
  --url https://api.cloud.flexprice.io/v1/prices/units
{
  "items": [
    {
      "base_currency": "<string>",
      "code": "<string>",
      "conversion_rate": 123,
      "created_at": "<string>",
      "id": "<string>",
      "name": "<string>",
      "precision": 123,
      "status": "published",
      "symbol": "<string>",
      "updated_at": "<string>"
    }
  ],
  "pagination": {
    "limit": 123,
    "offset": 123,
    "total": 123
  }
}

Query Parameters

status
string

Filter by status

limit
integer

Limit number of results

offset
integer

Offset for pagination

sort
string

Sort field

order
string

Sort order (asc/desc)

Response

200
application/json

OK

The response is of type object.