> ## Documentation Index
> Fetch the complete documentation index at: https://myco-29fc6df6-sweetmantech-myc-3925-docs-document-the-apiar.mintlify.site/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.

<Note>
  The Catalogs API also supports POST for creating/linking catalogs and DELETE for unlinking catalogs. See the [Create Catalogs](/api-reference/songs/catalogs-create) and [Delete Catalogs](/api-reference/songs/catalogs-delete) endpoints.
</Note>


## OpenAPI

````yaml get /api/catalogs
openapi: 3.1.0
info:
  title: Recoup API
  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://recoup-api.vercel.app
security:
  - apiKeyAuth: []
paths:
  /api/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: account_id
          in: query
          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'
        '404':
          description: Account not found or no catalogs found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CatalogsErrorResponse'
      servers:
        - url: https://api.recoupable.com
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
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Your Recoup API key. [Learn more](/quickstart#api-keys).

````