PostHog projects API

The projects API from PostHog — 11 operation(s) for projects.

Operations 15

GET /api/organizations/{organization_id}/projects/ #
POST /api/organizations/{organization_id}/projects/ #
GET /api/organizations/{organization_id}/projects/{id}/ #
PUT /api/organizations/{organization_id}/projects/{id}/ #
PATCH /api/organizations/{organization_id}/projects/{id}/ #
DELETE /api/organizations/{organization_id}/projects/{id}/ #
GET /api/organizations/{organization_id}/projects/{id}/activity/ #
PATCH /api/organizations/{organization_id}/projects/{id}/add_product_intent/ #
POST /api/organizations/{organization_id}/projects/{id}/change_organization/ #
PATCH /api/organizations/{organization_id}/projects/{id}/complete_product_onboarding/ #
PATCH /api/organizations/{organization_id}/projects/{id}/delete_secret_token_backup/ #
POST /api/organizations/{organization_id}/projects/{id}/generate_conversations_public_token/ #
GET /api/organizations/{organization_id}/projects/{id}/is_generating_demo_data/ #
PATCH /api/organizations/{organization_id}/projects/{id}/reset_token/ #
PATCH /api/organizations/{organization_id}/projects/{id}/rotate_secret_token/ #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/posthog-projects-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

posthog-projects-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: PostHog actions Projects API
  version: 1.0.0
  description: ''
servers:
- url: https://app.posthog.com/api
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: projects
paths:
  /api/organizations/{organization_id}/projects/:
    get:
      operationId: organizations_projects_list
      description: Projects for the current organization.
      parameters:
      - name: limit
        required: false
        in: query
        description: Number of results to return per page.
        schema:
          type: integer
      - name: offset
        required: false
        in: query
        description: The initial index from which to return the results.
        schema:
          type: integer
      - $ref: '#/components/parameters/OrganizationIdPath'
      - name: search
        required: false
        in: query
        description: A search term.
        schema:
          type: string
      tags:
      - projects
      security:
      - PersonalAPIKeyAuth:
        - project:read
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedProjectBackwardCompatBasicList'
          description: ''
      x-explicit-tags:
      - core
    post:
      operationId: organizations_projects_create
      description: Projects for the current organization.
      parameters:
      - $ref: '#/components/parameters/OrganizationIdPath'
      tags:
      - projects
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProjectBackwardCompat'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/ProjectBackwardCompat'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/ProjectBackwardCompat'
      security:
      - PersonalAPIKeyAuth:
        - project:write
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectBackwardCompat'
          description: ''
      x-explicit-tags:
      - core
  /api/organizations/{organization_id}/projects/{id}/:
    get:
      operationId: organizations_projects_retrieve
      description: Retrieve a project and its settings.
      parameters:
      - in: path
        name: id
        schema:
          type: integer
          maximum: 9223372036854775807
          minimum: -9223372036854775808
          format: int64
        description: A unique value identifying this project.
        required: true
      - $ref: '#/components/parameters/OrganizationIdPath'
      tags:
      - projects
      security:
      - PersonalAPIKeyAuth:
        - project:read
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectBackwardCompat'
          description: ''
      x-explicit-tags:
      - core
    put:
      operationId: organizations_projects_update
      description: Replace a project and its settings. Prefer the PATCH endpoint for partial updates — PUT requires every writable field to be provided.
      parameters:
      - in: path
        name: id
        schema:
          type: integer
          maximum: 9223372036854775807
          minimum: -9223372036854775808
          format: int64
        description: A unique value identifying this project.
        required: true
      - $ref: '#/components/parameters/OrganizationIdPath'
      tags:
      - projects
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProjectBackwardCompat'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/ProjectBackwardCompat'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/ProjectBackwardCompat'
      security:
      - PersonalAPIKeyAuth:
        - project:write
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectBackwardCompat'
          description: ''
      x-explicit-tags:
      - core
    patch:
      operationId: organizations_projects_partial_update
      description: Update one or more of a project's settings. Only the fields included in the request body are changed.
      parameters:
      - in: path
        name: id
        schema:
          type: integer
          maximum: 9223372036854775807
          minimum: -9223372036854775808
          format: int64
        description: A unique value identifying this project.
        required: true
      - $ref: '#/components/parameters/OrganizationIdPath'
      tags:
      - projects
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedProjectBackwardCompat'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedProjectBackwardCompat'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedProjectBackwardCompat'
      security:
      - PersonalAPIKeyAuth:
        - project:write
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectBackwardCompat'
          description: ''
      x-explicit-tags:
      - core
    delete:
      operationId: organizations_projects_destroy
      description: Projects for the current organization.
      parameters:
      - in: path
        name: id
        schema:
          type: integer
          maximum: 9223372036854775807
          minimum: -9223372036854775808
          format: int64
        description: A unique value identifying this project.
        required: true
      - $ref: '#/components/parameters/OrganizationIdPath'
      tags:
      - projects
      security:
      - PersonalAPIKeyAuth:
        - project:write
      responses:
        '204':
          description: No response body
      x-explicit-tags:
      - core
  /api/organizations/{organization_id}/projects/{id}/activity/:
    get:
      operationId: organizations_projects_activity_retrieve
      description: Projects for the current organization.
      parameters:
      - in: path
        name: id
        schema:
          type: integer
          maximum: 9223372036854775807
          minimum: -9223372036854775808
          format: int64
        description: A unique value identifying this project.
        required: true
      - $ref: '#/components/parameters/OrganizationIdPath'
      tags:
      - projects
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectBackwardCompat'
          description: ''
      x-explicit-tags:
      - core
  /api/organizations/{organization_id}/projects/{id}/add_product_intent/:
    patch:
      operationId: organizations_projects_add_product_intent_partial_update
      description: Projects for the current organization.
      parameters:
      - in: path
        name: id
        schema:
          type: integer
          maximum: 9223372036854775807
          minimum: -9223372036854775808
          format: int64
        description: A unique value identifying this project.
        required: true
      - $ref: '#/components/parameters/OrganizationIdPath'
      tags:
      - projects
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedProjectBackwardCompat'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedProjectBackwardCompat'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedProjectBackwardCompat'
      security:
      - PersonalAPIKeyAuth:
        - project:read
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectBackwardCompat'
          description: ''
      x-explicit-tags:
      - core
  /api/organizations/{organization_id}/projects/{id}/change_organization/:
    post:
      operationId: organizations_projects_change_organization_create
      description: Projects for the current organization.
      parameters:
      - in: path
        name: id
        schema:
          type: integer
          maximum: 9223372036854775807
          minimum: -9223372036854775808
          format: int64
        description: A unique value identifying this project.
        required: true
      - $ref: '#/components/parameters/OrganizationIdPath'
      tags:
      - projects
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProjectBackwardCompat'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/ProjectBackwardCompat'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/ProjectBackwardCompat'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectBackwardCompat'
          description: ''
      x-explicit-tags:
      - core
  /api/organizations/{organization_id}/projects/{id}/complete_product_onboarding/:
    patch:
      operationId: organizations_projects_complete_product_onboarding_partial_update
      description: Projects for the current organization.
      parameters:
      - in: path
        name: id
        schema:
          type: integer
          maximum: 9223372036854775807
          minimum: -9223372036854775808
          format: int64
        description: A unique value identifying this project.
        required: true
      - $ref: '#/components/parameters/OrganizationIdPath'
      tags:
      - projects
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedProjectBackwardCompat'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedProjectBackwardCompat'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedProjectBackwardCompat'
      security:
      - PersonalAPIKeyAuth:
        - project:read
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectBackwardCompat'
          description: ''
      x-explicit-tags:
      - core
  /api/organizations/{organization_id}/projects/{id}/delete_secret_token_backup/:
    patch:
      operationId: organizations_projects_delete_secret_token_backup_partial_update
      description: Projects for the current organization.
      parameters:
      - in: path
        name: id
        schema:
          type: integer
          maximum: 9223372036854775807
          minimum: -9223372036854775808
          format: int64
        description: A unique value identifying this project.
        required: true
      - $ref: '#/components/parameters/OrganizationIdPath'
      tags:
      - projects
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedProjectBackwardCompat'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedProjectBackwardCompat'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedProjectBackwardCompat'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectBackwardCompat'
          description: ''
      x-explicit-tags:
      - core
  /api/organizations/{organization_id}/projects/{id}/generate_conversations_public_token/:
    post:
      operationId: organizations_projects_generate_conversations_public_token_create
      description: Projects for the current organization.
      parameters:
      - in: path
        name: id
        schema:
          type: integer
          maximum: 9223372036854775807
          minimum: -9223372036854775808
          format: int64
        description: A unique value identifying this project.
        required: true
      - $ref: '#/components/parameters/OrganizationIdPath'
      tags:
      - projects
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProjectBackwardCompat'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/ProjectBackwardCompat'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/ProjectBackwardCompat'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectBackwardCompat'
          description: ''
      x-explicit-tags:
      - core
  /api/organizations/{organization_id}/projects/{id}/is_generating_demo_data/:
    get:
      operationId: organizations_projects_is_generating_demo_data_retrieve
      description: Projects for the current organization.
      parameters:
      - in: path
        name: id
        schema:
          type: integer
          maximum: 9223372036854775807
          minimum: -9223372036854775808
          format: int64
        description: A unique value identifying this project.
        required: true
      - $ref: '#/components/parameters/OrganizationIdPath'
      tags:
      - projects
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectBackwardCompat'
          description: ''
      x-explicit-tags:
      - core
  /api/organizations/{organization_id}/projects/{id}/reset_token/:
    patch:
      operationId: organizations_projects_reset_token_partial_update
      description: Projects for the current organization.
      parameters:
      - in: path
        name: id
        schema:
          type: integer
          maximum: 9223372036854775807
          minimum: -9223372036854775808
          format: int64
        description: A unique value identifying this project.
        required: true
      - $ref: '#/components/parameters/OrganizationIdPath'
      tags:
      - projects
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedProjectBackwardCompat'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedProjectBackwardCompat'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedProjectBackwardCompat'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectBackwardCompat'
          description: ''
      x-explicit-tags:
      - core
  /api/organizations/{organization_id}/projects/{id}/rotate_secret_token/:
    patch:
      operationId: organizations_projects_rotate_secret_token_partial_update
      description: Projects for the current organization.
      parameters:
      - in: path
        name: id
        schema:
          type: integer
          maximum: 9223372036854775807
          minimum: -9223372036854775808
          format: int64
        description: A unique value identifying this project.
        required: true
      - $ref: '#/components/parameters/OrganizationIdPath'
      tags:
      - projects
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedProjectBackwardCompat'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedProjectBackwardCompat'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedProjectBackwardCompat'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectBackwardCompat'
          description: ''
      x-explicit-tags:
      - core
components:
  schemas:
    ProjectBackwardCompatBasic:
      type: object
      description: 'Like `ProjectBasicSerializer`, but also works as a drop-in replacement for `TeamBasicSerializer` by way of

        passthrough fields. This allows the meaning of `Team` to change from "project" to "environment" without breaking

        backward compatibility of the REST API.

        Do not use this in greenfield endpoints!'
      properties:
        id:
          type: integer
          readOnly: true
        uuid:
          type: string
          format: uuid
          readOnly: true
        organization:
          type: string
          format: uuid
          readOnly: true
        api_token:
          type: string
          readOnly: true
        name:
          type: string
          readOnly: true
        completed_snippet_onboarding:
          type: boolean
          readOnly: true
        has_completed_onboarding_for:
          readOnly: true
        ingested_event:
          type: boolean
          readOnly: true
        is_demo:
          type: boolean
          readOnly: true
        timezone:
          allOf:
          - $ref: '#/components/schemas/TimezoneEnum'
          readOnly: true
        access_control:
          type: boolean
          readOnly: true
      required:
      - access_control
      - api_token
      - completed_snippet_onboarding
      - has_completed_onboarding_for
      - id
      - ingested_event
      - is_demo
      - name
      - organization
      - timezone
      - uuid
    WeekStartDayEnum:
      enum:
      - 0
      - 1
      type: integer
      description: '* `0` - Sunday

        * `1` - Monday'
    PatchedProjectBackwardCompat:
      type: object
      description: 'Like `ProjectBasicSerializer`, but also works as a drop-in replacement for `TeamBasicSerializer` by way of

        passthrough fields. This allows the meaning of `Team` to change from "project" to "environment" without breaking

        backward compatibility of the REST API.

        Do not use this in greenfield endpoints!'
      properties:
        id:
          type: integer
          readOnly: true
        organization:
          type: string
          format: uuid
          readOnly: true
        name:
          type: string
          description: Human-readable project name.
          maxLength: 200
          minLength: 1
        product_description:
          type:
          - string
          - 'null'
          description: Short description of what the project is about. This is helpful to give our AI agents context about your project.
          maxLength: 1000
        created_at:
          type: string
          format: date-time
          readOnly: true
        effective_membership_level:
          allOf:
          - $ref: '#/components/schemas/EffectiveMembershipLevelEnum'
          readOnly: true
        has_group_types:
          type: boolean
          readOnly: true
        group_types:
          type: array
          items:
            type: object
            additionalProperties: true
          readOnly: true
        live_events_token:
          type:
          - string
          - 'null'
          readOnly: true
        updated_at:
          type: string
          format: date-time
          readOnly: true
        uuid:
          type: string
          format: uuid
          readOnly: true
        api_token:
          type: string
          readOnly: true
        app_urls:
          type: array
          items:
            type:
            - string
            - 'null'
            maxLength: 200
        anonymize_ips:
          type: boolean
          description: When true, PostHog drops the IP address from every ingested event.
        completed_snippet_onboarding:
          type: boolean
        ingested_event:
          type: boolean
          readOnly: true
        test_account_filters:
          description: Filter groups that identify internal/test traffic to be excluded from insights.
        test_account_filters_default_checked:
          type:
          - boolean
          - 'null'
          description: When true, new insights default to excluding internal/test users.
        path_cleaning_filters:
          description: Regex rewrite rules that collapse dynamic path segments (e.g. user IDs) before displaying URLs in paths.
        is_demo:
          type: boolean
        timezone:
          allOf:
          - $ref: '#/components/schemas/TimezoneEnum'
          description: 'IANA timezone used for date-based filters and reporting (e.g. `America/Los_Angeles`).


            * `Africa/Abidjan` - Africa/Abidjan

            * `Africa/Accra` - Africa/Accra

            * `Africa/Addis_Ababa` - Africa/Addis_Ababa

            * `Africa/Algiers` - Africa/Algiers

            * `Africa/Asmara` - Africa/Asmara

            * `Africa/Asmera` - Africa/Asmera

            * `Africa/Bamako` - Africa/Bamako

            * `Africa/Bangui` - Africa/Bangui

            * `Africa/Banjul` - Africa/Banjul

            * `Africa/Bissau` - Africa/Bissau

            * `Africa/Blantyre` - Africa/Blantyre

            * `Africa/Brazzaville` - Africa/Brazzaville

            * `Africa/Bujumbura` - Africa/Bujumbura

            * `Africa/Cairo` - Africa/Cairo

            * `Africa/Casablanca` - Africa/Casablanca

            * `Africa/Ceuta` - Africa/Ceuta

            * `Africa/Conakry` - Africa/Conakry

            * `Africa/Dakar` - Africa/Dakar

            * `Africa/Dar_es_Salaam` - Africa/Dar_es_Salaam

            * `Africa/Djibouti` - Africa/Djibouti

            * `Africa/Douala` - Africa/Douala

            * `Africa/El_Aaiun` - Africa/El_Aaiun

            * `Africa/Freetown` - Africa/Freetown

            * `Africa/Gaborone` - Africa/Gaborone

            * `Africa/Harare` - Africa/Harare

            * `Africa/Johannesburg` - Africa/Johannesburg

            * `Africa/Juba` - Africa/Juba

            * `Africa/Kampala` - Africa/Kampala

            * `Africa/Khartoum` - Africa/Khartoum

            * `Africa/Kigali` - Africa/Kigali

            * `Africa/Kinshasa` - Africa/Kinshasa

            * `Africa/Lagos` - Africa/Lagos

            * `Africa/Libreville` - Africa/Libreville

            * `Africa/Lome` - Africa/Lome

            * `Africa/Luanda` - Africa/Luanda

            * `Africa/Lubumbashi` - Africa/Lubumbashi

            * `Africa/Lusaka` - Africa/Lusaka

            * `Africa/Malabo` - Africa/Malabo

            * `Africa/Maputo` - Africa/Maputo

            * `Africa/Maseru` - Africa/Maseru

            * `Africa/Mbabane` - Africa/Mbabane

            * `Africa/Mogadishu` - Africa/Mogadishu

            * `Africa/Monrovia` - Africa/Monrovia

            * `Africa/Nairobi` - Africa/Nairobi

            * `Africa/Ndjamena` - Africa/Ndjamena

            * `Africa/Niamey` - Africa/Niamey

            * `Africa/Nouakchott` - Africa/Nouakchott

            * `Africa/Ouagadougou` - Africa/Ouagadougou

            * `Africa/Porto-Novo` - Africa/Porto-Novo

            * `Africa/Sao_Tome` - Africa/Sao_Tome

            * `Africa/Timbuktu` - Africa/Timbuktu

            * `Africa/Tripoli` - Africa/Tripoli

            * `Africa/Tunis` - Africa/Tunis

            * `Africa/Windhoek` - Africa/Windhoek

            * `America/Adak` - America/Adak

            * `America/Anchorage` - America/Anchorage

            * `America/Anguilla` - America/Anguilla

            * `America/Antigua` - America/Antigua

            * `America/Araguaina` - America/Araguaina

            * `America/Argentina/Buenos_Aires` - America/Argentina/Buenos_Aires

            * `America/Argentina/Catamarca` - America/Argentina/Catamarca

            * `America/Argentina/ComodRivadavia` - America/Argentina/ComodRivadavia

            * `America/Argentina/Cordoba` - America/Argentina/Cordoba

            * `America/Argentina/Jujuy` - America/Argentina/Jujuy

            * `America/Argentina/La_Rioja` - America/Argentina/La_Rioja

            * `America/Argentina/Mendoza` - America/Argentina/Mendoza

            * `America/Argentina/Rio_Gallegos` - America/Argentina/Rio_Gallegos

            * `America/Argentina/Salta` - America/Argentina/Salta

            * `America/Argentina/San_Juan` - America/Argentina/San_Juan

            * `America/Argentina/San_Luis` - America/Argentina/San_Luis

            * `America/Argentina/Tucuman` - America/Argentina/Tucuman

            * `America/Argentina/Ushuaia` - America/Argentina/Ushuaia

            * `America/Aruba` - America/Aruba

            * `America/Asuncion` - America/Asuncion

            * `America/Atikokan` - America/Atikokan

            * `America/Atka` - America/Atka

            * `America/Bahia` - America/Bahia

            * `America/Bahia_Banderas` - America/Bahia_Banderas

            * `America/Barbados` - America/Barbados

            * `America/Belem` - America/Belem

            * `America/Belize` - America/Belize

            * `America/Blanc-Sablon` - America/Blanc-Sablon

            * `America/Boa_Vista` - America/Boa_Vista

            * `America/Bogota` - America/Bogota

            * `America/Boise` - America/Boise

            * `America/Buenos_Aires` - America/Buenos_Aires

            * `America/Cambridge_Bay` - America/Cambridge_Bay

            * `America/Campo_Grande` - America/Campo_Grande

            * `America/Cancun` - America/Cancun

            * `America/Caracas` - America/Caracas

            * `America/Catamarca` - America/Catamarca

            * `America/Cayenne` - America/Cayenne

            * `America/Cayman` - America/Cayman

            * `America/Chicago` - America/Chicago

            * `America/Chihuahua` - America/Chihuahua

            * `America/Ciudad_Juarez` - America/Ciudad_Juarez

            * `America/Coral_Harbour` - America/Coral_Harbour

            * `America/Cordoba` - America/Cordoba

            * `America/Costa_Rica` - America/Costa_Rica

            * `America/Creston` - America/Creston

            * `America/Cuiaba` - America/Cuiaba

            * `America/Curacao` - America/Curacao

            * `America/Danmarkshavn` - America/Danmarkshavn

            * `America/Dawson` - America/Dawson

            * `America/Dawson_Creek` - America/Dawson_Creek

            * `America/Denver` - America/Denver

            * `America/Detroit` - America/Detroit

            * `America/Dominica` - America/Dominica

            * `America/Edmonton` - America/Edmonton

            * `America/Eirunepe` - America/Eirunepe

            * `America/El_Salvador` - America/El_Salvador

            * `America/Ensenada` - America/Ensenada

            * `America/Fort_Nelson` - America/Fort_Nelson

            * `America/Fort_Wayne` - America/Fort_Wayne

            * `America/Fortaleza` - America/Fortaleza

            * `America/Glace_Bay` - America/Glace_Bay

            * `America/Godthab` - America/Godthab

            * `America/Goose_Bay` - America/Goose_Bay

            * `America/Grand_Turk` - America/Grand_Turk

            * `America/Grenada` - America/Grenada

            * `America/Guadeloupe` - America/Guadeloupe

            * `America/Guatemala` - America/Guatemala

            * `America/Guayaquil` - America/Guayaquil

            * `America/Guyana` - America/Guyana

            * `America/Halifax` - America/Halifax

            * `America/Havana` - America/Havana

            * `America/Hermosillo` - America/Hermosillo

            * `America/Indiana/Indianapolis` - America/Indiana/Indianapolis

            * `America/Indiana/Knox` - America/Indiana/Knox

            * `America/Indiana/Marengo` - America/Indiana/Marengo

            * `America/Indiana/Petersburg` - America/Indiana/Petersburg

            * `America/Indiana/Tell_City` - America/Indiana/Tell_City

            * `America/Indiana/Vevay` - America/Indiana/Vevay

            * `America/Indiana/Vincennes` - America/Indiana/Vincennes

            * `America/Indiana/Winamac` - America/Indiana/Winamac

            * `America/Indianapolis` - America/Indianapolis

            * `America/Inuvik` - America/Inuvik

            * `America/Iqaluit` - America/Iqaluit

            * `America/Jamaica` - America/Jamaica

            * `America/Jujuy` - America/Jujuy

            * `America/Juneau` - America/Juneau

            * `America/Kentucky/Louisville` - America/Kentucky/Louisville

            * `America/Kentucky/Monticello` - America/Kentucky/Monticello

            * `America/Knox_IN` - America/Knox_IN

            * `America/Kralendijk` - America/Kralendijk

            * `America/La_Paz` - America/La_Paz

            * `America/Lima` - America/Lima

            * `America/Los_Angeles` - America/Los_Angeles

            * `America/Louisville` - America/Louisville

            * `America/Lower_Princes` - America/Lower_Princes

            * `America/Maceio` - America/Maceio

            * `America/Managua` - America/Managua

            * `America/Manaus` - America/Manaus

            * `America/Marigot` - America/Marigot

            * `America/Martinique` - America/Martinique

            * `America/Matamoros` - America/Matamoros

            * `America/Mazatlan` - America/Mazatlan

            * `America/Mendoza` - America/Mendoza

            * `America/Menominee` - America/Menominee

            * `America/Merida` - America/Merida

            * `America/Metlakatla` - America/Metlakatla

            * `America/Mexico_City` - America/Mexico_City

            * `America/Miquelon` - America/Miquelon

            * `America/Moncton` - America/Moncton

            * `America/Monterrey` - America/Monterrey

            * `America/Montevideo` - America/Montevideo

            * `America/Montreal` - America/Montreal

            * `America/Montserrat` - America/Montserrat

            * `America/Nassau` - America/Nassau

            * `America/New_York` - America/New_York

            * `America/Nipigon` - America/Nipigon

            * `America/Nome` - America/Nome

            * `America/Noronha` - America/Noronha

            * `America/North_Dakota/Beulah` - America/North_Dakota/Beulah

            * `America/North_Dakota/Center` - America/North_Dakota/Center

            * `America/North_Dakota/New_Salem` - America/North_Dakota/New_Salem

            * `America/Nuuk` - America/Nuuk

            * `America/Ojinaga` - America/Ojinaga

            * `America/Panama` - America/Panama

            * `America/Pangnirtung` - America/Pangnirtung

            * `America/Paramaribo` - America/Paramaribo

            * `America/Phoenix` - America/Phoenix

            * `America/Port-au-Prince` - America/Port-au-Prince

            * `America/Port_of_Spain` - America/Port_of_Spain

            * `America/Porto_Acre` - America/Porto_Acre

            * `America/Porto_Velho` - America/Porto_Velho

            * `America/Puerto_Rico` - America/Puerto_Rico

            * `America/Punta_Arenas` - America/Punta_Arenas

            * `America/Rainy_River` - America/Rainy_River

            * `America/Rankin_Inlet` - America/Rankin_Inlet

            * `America/Recife` - America/Recife

            * `America/Regina` - America/Regina

            * `America/Resolute` - America/Resolute

            * `America/Rio_Branco` - America/Rio_Branco

            * `America/Rosario` - America/Rosario

            * `America/Santa_Isabel` - America/Santa_Isabel

            * `America/Santarem` - America/Santarem

            * `America/Santiago` - America/Santiago

            * `America/Santo_Domingo` - America/Santo_Domingo

            * `America/Sao_Paulo` - America/Sao_Paulo

            * `America/Scoresbysund` - America/Scoresbysund

            * `America/Shiprock` - America/Shiprock

            * `America/Sitka` - America/Sitka

            * `America/St_Barthelemy` - America/St_Barthelemy

            * `America/St_Johns` - America/St_Johns

            * `America/St_Kitts` - America/St_Kitts

            * `America/St_Lucia` - America/St_Lucia

            * `America/St_Thomas` - America/St_Thomas

            * `America/St_Vincent` - America/St_Vi

# --- truncated at 32 KB (144 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/posthog/refs/heads/main/openapi/posthog-projects-api-openapi.yml