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

# Get catalog details

> Get detailed information for all non-system catalogs including properties.
Excludes system, hive, llm, and iceberg catalogs.



## OpenAPI

````yaml get /api/metastore/catalogs/details
openapi: 3.1.0
info:
  title: Nx1 AI API
  description: |

    AI API for Nx1 Data Platform Management and Automated Data Tasks.

    Authentication is required via PSK in Authorization header.

    Default PSK is | [ask a friend] |
  version: 0.10.2
servers: []
security: []
paths:
  /api/metastore/catalogs/details:
    get:
      tags:
        - Metastore
      summary: Get catalog details
      description: >-
        Get detailed information for all non-system catalogs including
        properties.

        Excludes system, hive, llm, and iceberg catalogs.
      operationId: get_catalog_details_api_metastore_catalogs_details_get
      responses:
        '200':
          description: Catalog details retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CatalogDetailsResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - OAuth2AuthorizationCodeBearer: []
        - APIKeyHeader: []
components:
  schemas:
    CatalogDetailsResponse:
      properties:
        catalogs:
          items:
            $ref: '#/components/schemas/CatalogDetailInfo'
          type: array
          title: Catalogs
          description: List of catalog details.
        total:
          type: integer
          title: Total
          description: Total number of catalogs.
      type: object
      required:
        - catalogs
        - total
      title: CatalogDetailsResponse
    ErrorResponse:
      properties:
        error:
          type: string
          title: Error
          description: A brief description of the error that occurred.
        code:
          type: integer
          title: Code
          description: The HTTP status code associated with the error.
          default: 500
      type: object
      required:
        - error
      title: ErrorResponse
    CatalogDetailInfo:
      properties:
        name:
          type: string
          title: Name
          description: Name of the catalog.
        catalog_type:
          type: string
          title: Catalog Type
          description: Connector type such as `iceberg` or `postgresql`.
        properties:
          additionalProperties: true
          type: object
          title: Properties
          description: Catalog configuration properties, sensitive values redacted.
        is_system:
          type: boolean
          title: Is System
          description: Whether this is a system catalog.
        schema_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Schema Count
          description: Number of schemas in the catalog.
        table_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Table Count
          description: Number of tables in the catalog excluding views.
        view_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: View Count
          description: Number of views in the catalog.
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
          description: Catalog creation timestamp.
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updated At
          description: When the catalog was last updated.
      type: object
      required:
        - name
        - catalog_type
        - is_system
      title: CatalogDetailInfo
  securitySchemes:
    OAuth2AuthorizationCodeBearer:
      type: oauth2
      flows:
        authorizationCode:
          scopes: {}
          authorizationUrl: >-
            https://sso-rapid.rapid.nx1cloud.com/realms/rapid/protocol/openid-connect/auth
          tokenUrl: >-
            https://sso-rapid.rapid.nx1cloud.com/realms/rapid/protocol/openid-connect/token
    APIKeyHeader:
      type: apiKey
      in: header
      name: Authorization-PSK

````