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

# Share Semantic Catalog

> Shares a Semantic Catalog with another Project. The target Project gains read access to the catalog's schemas and tables.


<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 post /data/projects/{projectId}/semantic-catalogs/{catalogId}/share
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}/semantic-catalogs/{catalogId}/share:
    post:
      tags:
        - Data -- Semantic Catalogs
      summary: Share Semantic Catalog
      description: >
        Shares a Semantic Catalog with another Project. The target Project gains
        read access to the catalog's schemas and tables.
      operationId: shareSemanticTable
      parameters:
        - name: projectId
          in: path
          description: ID of the Project
          required: true
          schema:
            type: string
          example: mtKDhe1U
        - name: catalogId
          in: path
          description: ID of the Semantic Catalog to share
          required: true
          schema:
            type: string
          example: 688890918747898100
      requestBody:
        description: Share Request
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CatalogShareRequest'
            example:
              target: MQtMNNBY
        required: true
      responses:
        '200':
          description: Table shared
components:
  schemas:
    CatalogShareRequest:
      type: object
      properties:
        target:
          type: string
          description: Target Project ID
  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

````