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
}
}
Get a paginated list of price units with optional filtering
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
}
}
Filter by status
Limit number of results
Offset for pagination
Sort field
Sort order (asc/desc)
OK
The response is of type object
.