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

# Retrieves the collection of ProductionRecording resources.

> Retrieves the collection of ProductionRecording resources.



## OpenAPI

````yaml /openapi.json get /api/productions/{productionId}/recordings
openapi: 3.1.0
info:
  title: FMDB API
  description: >-
    The FMDB API provides access to a comprehensive film music database,
    covering releases, productions, artists, and recordings. It is designed for
    integration with third-party applications and services. FMDB is a
    non-commercial, privacy-first platform. The API is currently in beta and
    subject to change. Authentication is required for all endpoints unless
    stated otherwise.
  version: 1.0.0 Beta
servers:
  - url: https://www.fmdb.net
    description: Production
security:
  - bearerAuth: []
tags:
  - name: ArtistGroupMember
    description: Group memberships for artists.
  - name: ArtistAlias
    description: Artist aliases including nicknames, pseudonyms, and alternate spellings.
  - name: Artist
    description: Musical artists including individuals, groups, orchestras, and choirs.
  - name: ArtistRoleResolution
    description: >-
      Resolves a free-text credit title to the best-matching artist role, scoped
      by credit context.
  - name: ArtistRole
    description: >-
      Artist roles define the function of an artist in a release, recording, or
      track.
  - name: ArtistExternalLink
    description: External links for artists (MusicBrainz, Spotify, etc.).
  - name: LabelExternalLink
    description: External links for labels (MusicBrainz, Spotify, etc.).
  - name: OrganizationExternalLink
    description: External links for organizations (VGMdb, etc.).
  - name: ProductionExternalLink
    description: External links for productions (VGMdb, MusicBrainz, etc.).
  - name: ReleaseExternalLink
    description: External links for releases (Spotify, Discogs, MusicBrainz, etc.).
  - name: Label
    description: Record labels and music publishers.
  - name: LabelSeries
    description: Label series for categorizing releases within a label.
  - name: Organization
    description: >-
      Non-performer organizations credited on recordings (orchestra contractors,
      music-preparation houses, scoring services).
  - name: PackagingType
    description: >-
      Physical packaging types for releases (Jewel Case, Digipak, Box Set,
      etc.).
  - name: ProductionEntry
    description: Individual entries (episodes, parts) within a production series.
  - name: ProductionRecording
    description: Recordings associated with a production.
  - name: Production
    description: Film, TV, and game productions with associated music.
  - name: ReleaseFormat
    description: Physical or digital formats of a release (CD, vinyl, digital).
  - name: ReleaseRecording
    description: >-
      Recordings linked to a release with effective credits after applying
      exclusions.
  - name: Release
    description: Music releases including albums, soundtracks, and compilations.
  - name: ReleaseTrack
    description: Individual tracks on a release format.
  - name: Me
    description: Resource 'Me' operations.
  - name: User
    description: Resource 'User' operations.
  - name: CollectionItem
    description: Collection items representing releases owned by a user.
  - name: WishlistItem
    description: Wishlist items representing releases a user wants to acquire.
paths:
  /api/productions/{productionId}/recordings:
    get:
      tags:
        - ProductionRecording
      summary: Retrieves the collection of ProductionRecording resources.
      description: Retrieves the collection of ProductionRecording resources.
      operationId: api_productions_productionIdrecordings_get_collection
      parameters:
        - name: productionId
          in: path
          description: ProductionResource identifier
          required: true
          deprecated: false
          schema:
            type: string
          style: simple
          explode: false
        - name: page
          in: query
          description: The collection page number
          required: false
          deprecated: false
          schema:
            type: integer
            default: 1
          style: form
          explode: true
        - name: title
          in: query
          description: ProductionRecording title
          required: false
          deprecated: false
          schema:
            type: string
          style: form
          explode: true
        - name: title[]
          in: query
          description: ProductionRecording title
          required: false
          deprecated: false
          schema:
            type: array
            items:
              type: string
          style: deepObject
          explode: true
      responses:
        '200':
          description: ProductionRecording collection
          content:
            application/vnd.api+json:
              schema:
                description: ProductionRecording.jsonapi collection.
                allOf:
                  - $ref: '#/components/schemas/JsonApiCollectionBaseSchema'
                  - type: object
                    properties:
                      data:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                            type:
                              type: string
                            attributes:
                              type: object
                              properties:
                                _id:
                                  type: string
                                title:
                                  example: Main Theme
                                  type:
                                    - string
                                    - 'null'
                                display_title:
                                  readOnly: true
                                  description: >-
                                    Stable label for the recording. Returns
                                    title when set; otherwise the recording-type
                                    label ("Original Recording", "Re-Recording",
                                    "Concert Recording", "Demo Recording") with
                                    a stable createdAt-based ordinal ("Original
                                    Recording (2)") when a production has
                                    multiple untitled recordings of the same
                                    kind. Usage (recording_usage) is a separate
                                    attribute and is not reflected in this
                                    title. Read-only and not available as a
                                    filter or order property; order[title] and
                                    order[createdAt] cover ordering.
                                  default: ''
                                  example: Main Theme
                                  type: string
                                notes:
                                  example: Recorded at Abbey Road Studios
                                  type:
                                    - string
                                    - 'null'
                                recording_type:
                                  default: original
                                  example: original
                                  type: string
                                  enum:
                                    - original
                                    - rerecording
                                    - concert
                                    - demo
                                recording_usage:
                                  description: >-
                                    How the recording was used in the
                                    production. A separate axis from
                                    recording_type; not reflected in
                                    display_title.
                                  default: standard
                                  example: standard
                                  type: string
                                  enum:
                                    - standard
                                    - unused
                                    - rejected
                                created_at:
                                  example: '2024-01-15T10:00:00+00:00'
                                  type: string
                                  format: date-time
                                credits:
                                  type: array
                                  items:
                                    type: object
                                    additionalProperties:
                                      anyOf:
                                        - type: object
                                          additionalProperties:
                                            type:
                                              - string
                                              - 'null'
                                        - type: object
                                          additionalProperties:
                                            type: string
                                        - type: array
                                          items:
                                            type: object
                                            additionalProperties:
                                              type:
                                                - string
                                                - 'null'
                                        - type: string
                                        - type: 'null'
                                orchestras:
                                  type: array
                                  items:
                                    type: object
                                    additionalProperties:
                                      anyOf:
                                        - type: object
                                          additionalProperties:
                                            type:
                                              - string
                                              - 'null'
                                        - type: object
                                          additionalProperties:
                                            type: string
                                        - type: string
                                        - type: 'null'
                                choirs:
                                  type: array
                                  items:
                                    type: object
                                    additionalProperties:
                                      anyOf:
                                        - type: object
                                          additionalProperties:
                                            type:
                                              - string
                                              - 'null'
                                        - type: object
                                          additionalProperties:
                                            type: string
                                        - type: string
                                        - type: 'null'
                                organizations:
                                  type: array
                                  items:
                                    type: object
                                    additionalProperties:
                                      anyOf:
                                        - type: object
                                          additionalProperties:
                                            type:
                                              - string
                                              - 'null'
                                        - type: array
                                          items:
                                            type: object
                                            additionalProperties:
                                              type:
                                                - string
                                                - 'null'
                                        - type: string
                                        - type: 'null'
                          required:
                            - type
                            - id
components:
  schemas:
    JsonApiCollectionBaseSchema:
      allOf:
        - $ref: '#/components/schemas/JsonApiCollectionBaseSchemaNoPagination'
        - type: object
          properties:
            links:
              type: object
              properties:
                first:
                  type: string
                  format: iri-reference
                prev:
                  type: string
                  format: iri-reference
                next:
                  type: string
                  format: iri-reference
                last:
                  type: string
                  format: iri-reference
              example:
                first: string
                prev: string
                next: string
                last: string
            meta:
              type: object
              properties:
                itemsPerPage:
                  type: integer
                  minimum: 0
                currentPage:
                  type: integer
                  minimum: 0
    JsonApiCollectionBaseSchemaNoPagination:
      type: object
      properties:
        links:
          type: object
          properties:
            self:
              type: string
              format: iri-reference
          example:
            self: string
        meta:
          type: object
          properties:
            totalItems:
              type: integer
              minimum: 0
        data:
          type: array
      required:
        - data
  securitySchemes:
    bearerAuth:
      type: http
      description: API token authentication
      scheme: bearer
      bearerFormat: JWT

````