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

# Get Catalogs

> Retrieve catalogs associated with a specific account. The endpoint joins account_catalogs with catalogs to return catalog metadata for the specified account.



## OpenAPI

````yaml api-reference/openapi/releases.json GET /api/accounts/{id}/catalogs
openapi: 3.1.0
info:
  title: Recoup API - Releases
  description: >-
    API documentation for the Recoup platform - an AI agent platform for the
    music industry
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.recoupable.dev
security: []
paths:
  /api/accounts/{id}/catalogs:
    get:
      description: >-
        Retrieve catalogs associated with a specific account. The endpoint joins
        account_catalogs with catalogs to return catalog metadata for the
        specified account.
      parameters:
        - name: id
          in: path
          description: The unique identifier of the account to query
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Catalogs retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CatalogsResponse'
        '400':
          description: Bad request - missing or invalid account id
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CatalogsErrorResponse'
        '401':
          description: Unauthorized - missing or invalid authentication
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CatalogsErrorResponse'
        '403':
          description: Forbidden - caller lacks access to the target account
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CatalogsErrorResponse'
        '404':
          description: Account not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CatalogsErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CatalogsErrorResponse'
components:
  schemas:
    CatalogsResponse:
      type: object
      description: Response containing catalogs data
      properties:
        status:
          type: string
          enum:
            - success
            - error
          description: Status of the request
        catalogs:
          type: array
          items:
            $ref: '#/components/schemas/Catalog'
          description: Array of catalog objects
        error:
          type: string
          description: Error message (only present if status is 'error')
    CatalogsErrorResponse:
      type: object
      properties:
        status:
          type: string
          enum:
            - error
          description: Status of the request
        error:
          type: string
          description: Error message describing what went wrong
    Catalog:
      type: object
      description: A catalog with its metadata
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the catalog
        name:
          type: string
          description: Name of the catalog
        created_at:
          type: string
          format: date-time
          description: ISO timestamp of when the catalog was created
        updated_at:
          type: string
          format: date-time
          description: ISO timestamp of when the catalog was last updated

````