> ## 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 Catalog Songs

> Retrieve songs within a specific catalog with pagination support. This endpoint joins catalog_songs with songs, song_artists, and accounts to provide comprehensive song information for a given catalog.

<Note>
  This endpoint supports pagination. The Catalog Songs API also supports POST for adding songs and DELETE for removing songs. See the [Add Catalog Songs](/api-reference/songs/catalog-songs-add) and [Remove Catalog Songs](/api-reference/songs/catalog-songs-delete) endpoints.
</Note>


## OpenAPI

````yaml get /api/catalogs/songs
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/catalogs/songs:
    get:
      description: >-
        Retrieve songs within a specific catalog with pagination support. This
        endpoint joins catalog_songs with songs, song_artists, and accounts to
        provide comprehensive song information for a given catalog.
      parameters:
        - name: catalog_id
          in: query
          description: The unique identifier of the catalog to query songs for
          required: true
          schema:
            type: string
            format: uuid
        - name: artistName
          in: query
          description: >-
            Optional. Filters songs to only include those with matching artist
            name
          required: false
          schema:
            type: string
        - name: page
          in: query
          description: 'Page number for pagination (default: 1)'
          required: false
          schema:
            type: integer
            default: 1
        - name: limit
          in: query
          description: 'Number of songs per page (default: 20, max: 100)'
          required: false
          schema:
            type: integer
            default: 20
            maximum: 100
      responses:
        '200':
          description: Catalog songs retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CatalogSongsResponse'
        '400':
          description: Bad request - missing or invalid catalog_id
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CatalogSongsErrorResponse'
        '404':
          description: Catalog not found or no songs in catalog
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CatalogSongsErrorResponse'
components:
  schemas:
    CatalogSongsResponse:
      type: object
      description: Response containing catalog songs data with pagination
      properties:
        status:
          type: string
          enum:
            - success
            - error
          description: Status of the request
        songs:
          type: array
          items:
            $ref: '#/components/schemas/CatalogSong'
          description: Array of song objects with artist information
        pagination:
          $ref: '#/components/schemas/CatalogSongsPagination'
          description: Pagination metadata for the response
        error:
          type: string
          description: Error message (only present if status is 'error')
    CatalogSongsErrorResponse:
      type: object
      properties:
        status:
          type: string
          enum:
            - error
          description: Status of the request
        error:
          type: string
          description: Error message describing what went wrong
    CatalogSong:
      type: object
      description: A song within a catalog with its metadata and associated artists
      properties:
        catalog_id:
          type: string
          format: uuid
          description: Catalog ID this song entry is associated with
        isrc:
          type: string
          description: International Standard Recording Code (primary key)
        name:
          type: string
          description: Name of the song
        album:
          type: string
          description: Name of the album the song belongs to
        lyrics:
          type: string
          description: Full lyrics of the song
        updated_at:
          type: string
          format: date-time
          description: ISO timestamp of when the song data was last updated
        artists:
          type: array
          items:
            $ref: '#/components/schemas/SongArtist'
          description: Array of artist objects associated with this song
    CatalogSongsPagination:
      type: object
      description: Pagination metadata for catalog songs response
      properties:
        total_count:
          type: integer
          description: Total number of songs in the catalog
        page:
          type: integer
          description: Current page number
        limit:
          type: integer
          description: Number of songs per page
        total_pages:
          type: integer
          description: Total number of pages available
    SongArtist:
      type: object
      description: Artist associated with a song
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the artist account
        name:
          type: string
          nullable: true
          description: Name of the artist (can be null)
        timestamp:
          type: integer
          nullable: true
          description: Timestamp associated with the artist account (can be null)

````