---
title: "List timezones"
method: GET
path: "/api/v1/meta/timezones"
tags: ["Account Information", "Public API"]
---

# List timezones

`GET /api/v1/meta/timezones`

Retrieves a paginated list of timezones. Supports pagination, filtering, sorting, and field projection via OData query parameters.

## Query parameters

- `pageSize` integer
- `page` integer
- `sort` string
- `select` string
- `filter` string

## Response `200`

A paginated list of timezones

- object — A response object that contains a paginated list of results.
  - `data` object[] — Array of timezone resources for the current page
    - `id` string — The timezone ID.
    - `gmtOffset` string — The GMT offset label (e.g. "(GMT-07:00)").
    - `name` string — The display name of the timezone.
    - `utcName` string — The IANA/UTC timezone identifier.
  - `meta` PaginationMetaData — A response object that contains pagination metadata.
    - `page` integer — The page number of the results.
    - `pageSize` integer — The number of items per page.
    - `totalPages` integer — The total number of pages available.
    - `totalItems` integer — The total number of items available.
  - `_links` object, nullable — Hypermedia links for collection navigation (next, prev) and available collection actions (e.g., create). Actions are permission-based and may vary.

## Other responses

- `400` — Invalid query parameters
- `401` — Unauthorized
- `403` — Forbidden
- `500` — Internal server error

---

[API](https://skmtc.net/bamboohr/apis/bamboohr-api.md) · [All operations](https://skmtc.net/bamboohr/apis/bamboohr-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/bamboohr/bamboohr-api/revisions/19ebf391a399/schema)
