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

# List Catalogs

> Get all catalogs for an organization



## OpenAPI

````yaml GET /organizations/{orgId}/catalogs
openapi: 3.1.0
info:
  title: Refine API
  description: >-
    API for managing product catalogs and delivering AI-powered product
    recommendations and search
  version: 1.0.0
  contact:
    name: Refine Support
    email: support@refine.ai
servers:
  - url: https://api.joinrefine.io
    description: Production server
security:
  - apiKey: []
paths:
  /organizations/{orgId}/catalogs:
    get:
      tags:
        - Catalog Operations
      summary: List Catalogs
      description: Get all catalogs for an organization
      operationId: listCatalogs
      parameters:
        - name: orgId
          in: path
          required: true
          description: Organization ID (UUID)
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: List of catalogs
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CatalogWithStatus'
        '400':
          description: Bad Request - Invalid organization ID format
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    CatalogWithStatus:
      allOf:
        - $ref: '#/components/schemas/Catalog'
        - type: object
          properties:
            status:
              type: string
              enum:
                - EMPTY
                - PROCESSING
                - WARNING
                - ERROR
                - PROCESSED
              description: Catalog processing status
    Error:
      type: object
      required:
        - status
        - message
        - time
        - method
        - url
      properties:
        status:
          type: integer
          description: HTTP status code
        message:
          type: string
          description: Error message
        time:
          type: string
          format: date-time
          description: Timestamp in RFC3339 format
        method:
          type: string
          description: HTTP method
        url:
          type: string
          description: Request URL
    Catalog:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Catalog ID
        name:
          type: string
          description: Catalog name
        description:
          type: string
          description: Catalog description
        organizationId:
          type: string
          format: uuid
          description: Organization ID
        productCount:
          type: integer
          description: Number of products in catalog
        createdAt:
          type: string
          format: date-time
          description: Creation timestamp
  responses:
    Unauthorized:
      description: Unauthorized - Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            status: 401
            message: Unauthorized
            time: '2024-06-14T19:21:00Z'
            method: GET
            url: /organizations/a8cd2722-1234-4567-9abc-def123456789/catalogs
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: REFINE_API_KEY
      description: API key for authentication

````