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

# List Organizations

> Retrieves all the organizations accessible by the authenticated user.

An Organization is the highest-level resource that can contain multiple Workspaces.


<span style={{display: "flex", gap: "10px", flexDirection: "row", alignItems: "center"}}>
  <img src="https://cdn.peaka.com/badges/partner-api-key-badge.png" />
</span>


## OpenAPI

````yaml get /organizations
openapi: 3.0.1
info:
  title: Peaka Gateway API
  description: Peaka Gateway API Documentation
  version: '1.0'
servers:
  - url: https://partner.peaka.studio/api/v1
    description: Default Server URL (US Zone)
  - url: https://partner.eu.peaka.studio/api/v1
    description: EU Zone
security:
  - bearerAuth: []
paths:
  /organizations:
    get:
      tags:
        - Organization -- Organizations
      summary: List Organizations
      description: >
        Retrieves all the organizations accessible by the authenticated user.


        An Organization is the highest-level resource that can contain multiple
        Workspaces.
      operationId: listOrganizations
      responses:
        '200':
          description: List of Organizations
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Organization'
              examples:
                List Organizations Example:
                  description: List Organizations Example
                  value:
                    - id: d0d3c83f-29ed-4f2e-899d-1bfa00eb3cef
                      name: ABC Organization
                      owner: 1673d60f-a0ea-41f4-9420-c91dbc2864f5
                      createdAt: '2025-03-25T12:28:48.737355Z'
                      iconFileId: null
                      description: Default Organization
components:
  schemas:
    Organization:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the organization
          format: uuid
        name:
          type: string
          description: The name of the organization
        owner:
          type: string
          description: The unique identifier of the user who created the organization
          format: uuid
        createdAt:
          type: string
          description: The date and time the organization was created
        iconFileId:
          type: string
          description: >-
            The identifier of the file that contains the icon of the
            organization
        description:
          type: string
          description: Descriptive text about the organization
  securitySchemes:
    bearerAuth:
      type: http
      description: >-
        Use the Authorization header with the value 'Bearer <apiKey>' to
        authenticate. Partner API Keys have full access; Project API Keys are
        limited to their project scope. Learn more:
        https://docs.peaka.com/api-reference/authentication
      scheme: bearer
      bearerFormat: Api Key

````