> ## Documentation Index
> Fetch the complete documentation index at: https://developers.everflow.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List Timezones

Retrieve all available timezones. Timezone IDs are used in most API endpoints involving dates and times, especially reporting. Your account's default timezone can be found via the network info endpoint.


## OpenAPI

````yaml openapi/metadata.yaml get /meta/timezones
openapi: 3.0.3
info:
  title: Everflow API - Metadata
  description: >
    Lookup endpoints for targeting and reporting metadata. Use these endpoints
    to retrieve valid IDs and values for countries, regions, cities, browsers,
    platforms, device types, and other dimensions used across the Everflow API.


    These values are referenced by offer targeting, rulesets, reporting filters,
    and other API endpoints that accept dimension IDs.
  version: 1.0.0
servers:
  - url: https://api.eflow.team/v1
security: []
tags:
  - name: Geolocation
    description: Country, region, city, DMA, and timezone lookups.
  - name: Device & Browser
    description: >-
      Browser, platform, device type, brand, OS version, and connection type
      lookups.
  - name: Other
    description: Currency, mobile carrier, and browser language lookups.
paths:
  /meta/timezones:
    get:
      tags:
        - Geolocation
      summary: List Timezones
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  timezones:
                    type: array
                    items:
                      type: object
                      properties:
                        timezone_id:
                          type: integer
                          description: Unique timezone identifier used in API requests.
                        timezone_name:
                          type: string
                          description: Full timezone display name.
                        timezone:
                          type: string
                          description: IANA timezone identifier (e.g. "America/New_York").
                        utc_offset:
                          type: string
                          description: UTC offset (e.g. "+05:00", "-04:00").
      security:
        - API Key: []
components:
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````