## List `v1.pricing_units.list(PricingUnitListParams**kwargs) -> SyncCursorPage[PricingUnitListResponse]` **get** `/v1/credit-types/list` List all pricing units (known in the API by the legacy term "credit types"). ### Parameters - **limit:** `int` Max number of results that should be returned - **next\_page:** `str` Cursor that indicates where the next page of results should start. ### Returns - `class PricingUnitListResponse` - **id:** `Optional[str]` - **is\_currency:** `Optional[bool]` - **name:** `Optional[str]` ### Example ```python from metronome import Metronome client = Metronome( bearer_token="My Bearer Token", ) page = client.v1.pricing_units.list() page = page.data[0] print(page.id) ```