> ## 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 Catalogs

> Returns all catalogs registered in the specified project. Each catalog represents a data source connected to Peaka, such as Airtable, Stripe, or an internal Peaka storage. Built-in catalog types like `internal` (Peaka Tables and BI Tables) and `query` (Peaka Queries) are always present.

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

  <img src="https://cdn.peaka.com/badges/project-api-key-badge.png" />
</span>


## OpenAPI

````yaml get /data/projects/{projectId}/catalogs
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:
  /data/projects/{projectId}/catalogs:
    get:
      tags:
        - Data -- Catalogs
      summary: List Catalogs
      description: >-
        Returns all catalogs registered in the specified project. Each catalog
        represents a data source connected to Peaka, such as Airtable, Stripe,
        or an internal Peaka storage. Built-in catalog types like `internal`
        (Peaka Tables and BI Tables) and `query` (Peaka Queries) are always
        present.
      operationId: listCatalogs
      parameters:
        - name: projectId
          in: path
          description: ID of the project
          required: true
          schema:
            type: string
          example: mtKDhe1U
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Catalog'
              examples:
                List Catalogs:
                  description: List Catalogs
                  value:
                    - id: '1'
                      name: peaka
                      displayName: Peaka
                      catalogType: internal
                      connectionId: null
                    - id: '2'
                      name: peaka
                      displayName: Peaka Query
                      catalogType: query
                      connectionId: null
                    - id: '555414570395501064'
                      name: examplename34
                      displayName: exampleName34
                      catalogType: stripe
                      connectionId: fe47b030-3718-4537-a6ba-eaa93c7204ee
                    - id: '555611268656923356'
                      name: examplename35
                      displayName: exampleName35
                      catalogType: segment
                      connectionId: fe47b030-3718-4537-a6ba-eaa93c7204ee
                    - id: '625151643029078208'
                      name: exampleairtablecatalog2
                      displayName: exampleAirtableCatalog2
                      catalogType: airtable
                      connectionId: 8db17e23-29de-4dab-8886-af9717e0e742
components:
  schemas:
    Catalog:
      type: object
      properties:
        id:
          type: string
          description: The ID of the catalog.
        name:
          type: string
          description: The name of the catalog.
        displayName:
          type: string
          description: The display name of the catalog.
        catalogType:
          type: string
          description: The type of the catalog.
        connectionId:
          type: string
          description: The connection ID of the catalog.
      description: |-
        This class represents a Catalog.
         It contains the id, name, display name, type, and connection ID of the catalog.
  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

````