TIDAL · Capability

TIDAL Catalog API — Albums

TIDAL Catalog API — Albums. 20 operations. Self-contained Naftiko capability covering one TIDAL business surface.

TIDAL Catalog API — Albums is a Naftiko capability published by TIDAL, one of 36 capabilities the APIs.io network indexes for this provider. It bundles 20 operations across the GET, PATCH, POST, and DELETE methods rooted at /v2/albums.

The capability includes 15 read-only operations and 5 state-changing operations. Lead operation: Get multiple albums. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include TIDAL, Music, and albums.

Run with Naftiko TIDALMusicalbums

What You Can Do

GET
Getalbums — Get multiple albums.
/v2/albums
POST
Postalbums — Create single album.
/v2/albums
DELETE
Deletealbums — Delete single album.
/v2/albums/{id}
GET
Getalbums — Get single album.
/v2/albums/{id}
PATCH
Patchalbums — Update single album.
/v2/albums/{id}
GET
Getalbums — Get albumStatistics relationship ("to-one").
/v2/albums/{id}/relationships/albumStatistics
GET
Getalbums — Get artists relationship ("to-many").
/v2/albums/{id}/relationships/artists
GET
Getalbums — Get coverArt relationship ("to-many").
/v2/albums/{id}/relationships/coverArt
PATCH
Patchalbums — Update coverArt relationship ("to-many").
/v2/albums/{id}/relationships/coverArt
GET
Getalbums — Get genres relationship ("to-many").
/v2/albums/{id}/relationships/genres
GET
Getalbums — Get items relationship ("to-many").
/v2/albums/{id}/relationships/items
PATCH
Patchalbums — Update items relationship ("to-many").
/v2/albums/{id}/relationships/items
GET
Getalbums — Get owners relationship ("to-many").
/v2/albums/{id}/relationships/owners
GET
Getalbums — Get priceConfig relationship ("to-one").
/v2/albums/{id}/relationships/priceConfig
GET
Getalbums — Get providers relationship ("to-many").
/v2/albums/{id}/relationships/providers
GET
Getalbums — Get replacement relationship ("to-one").
/v2/albums/{id}/relationships/replacement
GET
Getalbums — Get shares relationship ("to-many").
/v2/albums/{id}/relationships/shares
GET
Getalbums — Get similarAlbums relationship ("to-many").
/v2/albums/{id}/relationships/similarAlbums
GET
Getalbums — Get suggestedCoverArts relationship ("to-many").
/v2/albums/{id}/relationships/suggestedCoverArts
GET
Getalbums — Get usageRules relationship ("to-one").
/v2/albums/{id}/relationships/usageRules

MCP Tools

tidal-getalbums

Get multiple albums.

read-only idempotent
tidal-postalbums

Create single album.

tidal-deletealbums

Delete single album.

idempotent
tidal-getalbums

Get single album.

read-only idempotent
tidal-patchalbums

Update single album.

tidal-getalbums

Get albumStatistics relationship ("to-one").

read-only idempotent
tidal-getalbums

Get artists relationship ("to-many").

read-only idempotent
tidal-getalbums

Get coverArt relationship ("to-many").

read-only idempotent
tidal-patchalbums

Update coverArt relationship ("to-many").

tidal-getalbums

Get genres relationship ("to-many").

read-only idempotent
tidal-getalbums

Get items relationship ("to-many").

read-only idempotent
tidal-patchalbums

Update items relationship ("to-many").

tidal-getalbums

Get owners relationship ("to-many").

read-only idempotent
tidal-getalbums

Get priceConfig relationship ("to-one").

read-only idempotent
tidal-getalbums

Get providers relationship ("to-many").

read-only idempotent
tidal-getalbums

Get replacement relationship ("to-one").

read-only idempotent
tidal-getalbums

Get shares relationship ("to-many").

read-only idempotent
tidal-getalbums

Get similarAlbums relationship ("to-many").

read-only idempotent
tidal-getalbums

Get suggestedCoverArts relationship ("to-many").

read-only idempotent
tidal-getalbums

Get usageRules relationship ("to-one").

read-only idempotent

Capability Spec

catalog-albums.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: TIDAL Catalog API — Albums
  description: TIDAL Catalog API — Albums. 20 operations. Self-contained Naftiko capability covering one TIDAL business surface.
  tags:
  - TIDAL
  - Music
  - albums
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    TIDAL_ACCESS_TOKEN: TIDAL_ACCESS_TOKEN
capability:
  consumes:
  - type: http
    namespace: catalog-albums
    baseUri: https://openapi.tidal.com
    description: TIDAL Catalog API — Albums business capability. Self-contained, no shared references.
    resources:
    - name: albums
      path: /albums
      operations:
      - name: getalbums
        method: GET
        description: Get multiple albums.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page[cursor]
          in: query
          type: string
          description: Server-generated cursor value pointing a certain page of items. Optional, targets first page if not
            specified
          required: false
        - name: sort
          in: query
          type: array
          description: Values prefixed with "-" are sorted descending; values without it are sorted ascending.
          required: false
        - name: countryCode
          in: query
          type: string
          description: ISO 3166-1 alpha-2 country code
          required: false
        - name: include
          in: query
          type: array
          description: 'Allows the client to customize which related resources should be returned. Available options: albumStatistics,
            artists, coverArt, genres, items, owner'
          required: false
        - name: filter[barcodeId]
          in: query
          type: array
          description: 'List of barcode IDs (EAN-13 or UPC-A). NOTE: Supplying more than one barcode ID will currently only
            return one album per barcode ID. (e.g. `1965895254'
          required: false
        - name: filter[id]
          in: query
          type: array
          description: Album id (e.g. `251380836`)
          required: false
        - name: filter[owners.id]
          in: query
          type: array
          description: User id. Use `me` for the authenticated user
          required: false
        - name: shareCode
          in: query
          type: string
          description: Share code that grants access to UNLISTED resources. When provided, allows non-owners to access resources
            that would otherwise be restricted.
          required: false
      - name: postalbums
        method: POST
        description: Create single album.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: JSON:API document request body.
          required: true
    - name: albums-id
      path: /albums/{id}
      operations:
      - name: deletealbums
        method: DELETE
        description: Delete single album.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Album id
          required: true
      - name: getalbums
        method: GET
        description: Get single album.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Album id
          required: true
        - name: countryCode
          in: query
          type: string
          description: ISO 3166-1 alpha-2 country code
          required: false
        - name: include
          in: query
          type: array
          description: 'Allows the client to customize which related resources should be returned. Available options: albumStatistics,
            artists, coverArt, genres, items, owner'
          required: false
        - name: shareCode
          in: query
          type: string
          description: Share code that grants access to UNLISTED resources. When provided, allows non-owners to access resources
            that would otherwise be restricted.
          required: false
      - name: patchalbums
        method: PATCH
        description: Update single album.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Album id
          required: true
        - name: body
          in: body
          type: object
          description: JSON:API document request body.
          required: true
    - name: albums-id-relationships-albumStatistics
      path: /albums/{id}/relationships/albumStatistics
      operations:
      - name: getalbums
        method: GET
        description: Get albumStatistics relationship ("to-one").
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Album id
          required: true
        - name: include
          in: query
          type: array
          description: 'Allows the client to customize which related resources should be returned. Available options: albumStatistics'
          required: false
        - name: shareCode
          in: query
          type: string
          description: Share code that grants access to UNLISTED resources. When provided, allows non-owners to access resources
            that would otherwise be restricted.
          required: false
    - name: albums-id-relationships-artists
      path: /albums/{id}/relationships/artists
      operations:
      - name: getalbums
        method: GET
        description: Get artists relationship ("to-many").
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Album id
          required: true
        - name: page[cursor]
          in: query
          type: string
          description: Server-generated cursor value pointing a certain page of items. Optional, targets first page if not
            specified
          required: false
        - name: countryCode
          in: query
          type: string
          description: ISO 3166-1 alpha-2 country code
          required: false
        - name: include
          in: query
          type: array
          description: 'Allows the client to customize which related resources should be returned. Available options: artists'
          required: false
        - name: shareCode
          in: query
          type: string
          description: Share code that grants access to UNLISTED resources. When provided, allows non-owners to access resources
            that would otherwise be restricted.
          required: false
    - name: albums-id-relationships-coverArt
      path: /albums/{id}/relationships/coverArt
      operations:
      - name: getalbums
        method: GET
        description: Get coverArt relationship ("to-many").
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Album id
          required: true
        - name: page[cursor]
          in: query
          type: string
          description: Server-generated cursor value pointing a certain page of items. Optional, targets first page if not
            specified
          required: false
        - name: countryCode
          in: query
          type: string
          description: ISO 3166-1 alpha-2 country code
          required: false
        - name: include
          in: query
          type: array
          description: 'Allows the client to customize which related resources should be returned. Available options: coverArt'
          required: false
        - name: shareCode
          in: query
          type: string
          description: Share code that grants access to UNLISTED resources. When provided, allows non-owners to access resources
            that would otherwise be restricted.
          required: false
      - name: patchalbums
        method: PATCH
        description: Update coverArt relationship ("to-many").
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Album id
          required: true
        - name: body
          in: body
          type: object
          description: JSON:API document request body.
          required: true
    - name: albums-id-relationships-genres
      path: /albums/{id}/relationships/genres
      operations:
      - name: getalbums
        method: GET
        description: Get genres relationship ("to-many").
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Album id
          required: true
        - name: page[cursor]
          in: query
          type: string
          description: Server-generated cursor value pointing a certain page of items. Optional, targets first page if not
            specified
          required: false
        - name: countryCode
          in: query
          type: string
          description: ISO 3166-1 alpha-2 country code
          required: false
        - name: include
          in: query
          type: array
          description: 'Allows the client to customize which related resources should be returned. Available options: genres'
          required: false
        - name: shareCode
          in: query
          type: string
          description: Share code that grants access to UNLISTED resources. When provided, allows non-owners to access resources
            that would otherwise be restricted.
          required: false
    - name: albums-id-relationships-items
      path: /albums/{id}/relationships/items
      operations:
      - name: getalbums
        method: GET
        description: Get items relationship ("to-many").
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Album id
          required: true
        - name: page[cursor]
          in: query
          type: string
          description: Server-generated cursor value pointing a certain page of items. Optional, targets first page if not
            specified
          required: false
        - name: countryCode
          in: query
          type: string
          description: ISO 3166-1 alpha-2 country code
          required: false
        - name: include
          in: query
          type: array
          description: 'Allows the client to customize which related resources should be returned. Available options: items'
          required: false
        - name: shareCode
          in: query
          type: string
          description: Share code that grants access to UNLISTED resources. When provided, allows non-owners to access resources
            that would otherwise be restricted.
          required: false
      - name: patchalbums
        method: PATCH
        description: Update items relationship ("to-many").
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Album id
          required: true
        - name: body
          in: body
          type: object
          description: JSON:API document request body.
          required: true
    - name: albums-id-relationships-owners
      path: /albums/{id}/relationships/owners
      operations:
      - name: getalbums
        method: GET
        description: Get owners relationship ("to-many").
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Album id
          required: true
        - name: include
          in: query
          type: array
          description: 'Allows the client to customize which related resources should be returned. Available options: owners'
          required: false
        - name: page[cursor]
          in: query
          type: string
          description: Server-generated cursor value pointing a certain page of items. Optional, targets first page if not
            specified
          required: false
        - name: shareCode
          in: query
          type: string
          description: Share code that grants access to UNLISTED resources. When provided, allows non-owners to access resources
            that would otherwise be restricted.
          required: false
    - name: albums-id-relationships-priceConfig
      path: /albums/{id}/relationships/priceConfig
      operations:
      - name: getalbums
        method: GET
        description: Get priceConfig relationship ("to-one").
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Album id
          required: true
        - name: countryCode
          in: query
          type: string
          description: ISO 3166-1 alpha-2 country code
          required: false
        - name: include
          in: query
          type: array
          description: 'Allows the client to customize which related resources should be returned. Available options: priceConfig'
          required: false
        - name: shareCode
          in: query
          type: string
          description: Share code that grants access to UNLISTED resources. When provided, allows non-owners to access resources
            that would otherwise be restricted.
          required: false
    - name: albums-id-relationships-providers
      path: /albums/{id}/relationships/providers
      operations:
      - name: getalbums
        method: GET
        description: Get providers relationship ("to-many").
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Album id
          required: true
        - name: countryCode
          in: query
          type: string
          description: ISO 3166-1 alpha-2 country code
          required: false
        - name: include
          in: query
          type: array
          description: 'Allows the client to customize which related resources should be returned. Available options: providers'
          required: false
        - name: page[cursor]
          in: query
          type: string
          description: Server-generated cursor value pointing a certain page of items. Optional, targets first page if not
            specified
          required: false
        - name: shareCode
          in: query
          type: string
          description: Share code that grants access to UNLISTED resources. When provided, allows non-owners to access resources
            that would otherwise be restricted.
          required: false
    - name: albums-id-relationships-replacement
      path: /albums/{id}/relationships/replacement
      operations:
      - name: getalbums
        method: GET
        description: Get replacement relationship ("to-one").
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Album id
          required: true
        - name: countryCode
          in: query
          type: string
          description: ISO 3166-1 alpha-2 country code
          required: false
        - name: include
          in: query
          type: array
          description: 'Allows the client to customize which related resources should be returned. Available options: replacement'
          required: false
        - name: shareCode
          in: query
          type: string
          description: Share code that grants access to UNLISTED resources. When provided, allows non-owners to access resources
            that would otherwise be restricted.
          required: false
    - name: albums-id-relationships-shares
      path: /albums/{id}/relationships/shares
      operations:
      - name: getalbums
        method: GET
        description: Get shares relationship ("to-many").
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Album id
          required: true
        - name: include
          in: query
          type: array
          description: 'Allows the client to customize which related resources should be returned. Available options: shares'
          required: false
        - name: page[cursor]
          in: query
          type: string
          description: Server-generated cursor value pointing a certain page of items. Optional, targets first page if not
            specified
          required: false
        - name: shareCode
          in: query
          type: string
          description: Share code that grants access to UNLISTED resources. When provided, allows non-owners to access resources
            that would otherwise be restricted.
          required: false
    - name: albums-id-relationships-similarAlbums
      path: /albums/{id}/relationships/similarAlbums
      operations:
      - name: getalbums
        method: GET
        description: Get similarAlbums relationship ("to-many").
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Album id
          required: true
        - name: page[cursor]
          in: query
          type: string
          description: Server-generated cursor value pointing a certain page of items. Optional, targets first page if not
            specified
          required: false
        - name: countryCode
          in: query
          type: string
          description: ISO 3166-1 alpha-2 country code
          required: false
        - name: include
          in: query
          type: array
          description: 'Allows the client to customize which related resources should be returned. Available options: similarAlbums'
          required: false
        - name: shareCode
          in: query
          type: string
          description: Share code that grants access to UNLISTED resources. When provided, allows non-owners to access resources
            that would otherwise be restricted.
          required: false
    - name: albums-id-relationships-suggestedCoverArts
      path: /albums/{id}/relationships/suggestedCoverArts
      operations:
      - name: getalbums
        method: GET
        description: Get suggestedCoverArts relationship ("to-many").
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Album id
          required: true
        - name: include
          in: query
          type: array
          description: 'Allows the client to customize which related resources should be returned. Available options: suggestedCoverArts'
          required: false
        - name: page[cursor]
          in: query
          type: string
          description: Server-generated cursor value pointing a certain page of items. Optional, targets first page if not
            specified
          required: false
        - name: shareCode
          in: query
          type: string
          description: Share code that grants access to UNLISTED resources. When provided, allows non-owners to access resources
            that would otherwise be restricted.
          required: false
    - name: albums-id-relationships-usageRules
      path: /albums/{id}/relationships/usageRules
      operations:
      - name: getalbums
        method: GET
        description: Get usageRules relationship ("to-one").
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Album id
          required: true
        - name: countryCode
          in: query
          type: string
          description: ISO 3166-1 alpha-2 country code
          required: false
        - name: include
          in: query
          type: array
          description: 'Allows the client to customize which related resources should be returned. Available options: usageRules'
          required: false
        - name: shareCode
          in: query
          type: string
          description: Share code that grants access to UNLISTED resources. When provided, allows non-owners to access resources
            that would otherwise be restricted.
          required: false
    authentication:
      type: bearer
      value: '{{env.TIDAL_ACCESS_TOKEN}}'
      placement: header
      header: Authorization
      prefix: 'Bearer '
  exposes:
  - type: rest
    namespace: catalog-albums-rest
    port: 8080
    description: REST adapter for TIDAL Catalog API — Albums. One Spectral-compliant resource per consumed operation, prefixed
      with /v2.
    resources:
    - path: /v2/albums
      name: albums
      description: REST surface for albums.
      operations:
      - method: GET
        name: getalbums
        description: Get multiple albums.
        call: catalog-albums.getalbums
        with:
          page[cursor]: rest.query.page[cursor]
          sort: rest.query.sort
          countryCode: rest.query.countryCode
          include: rest.query.include
          filter[barcodeId]: rest.query.filter[barcodeId]
          filter[id]: rest.query.filter[id]
          filter[owners.id]: rest.query.filter[owners.id]
          shareCode: rest.query.shareCode
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: postalbums
        description: Create single album.
        call: catalog-albums.postalbums
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v2/albums/{id}
      name: albums-id
      description: REST surface for albums-id.
      operations:
      - method: DELETE
        name: deletealbums
        description: Delete single album.
        call: catalog-albums.deletealbums
        with:
          id: rest.path.id
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getalbums
        description: Get single album.
        call: catalog-albums.getalbums
        with:
          id: rest.path.id
          countryCode: rest.query.countryCode
          include: rest.query.include
          shareCode: rest.query.shareCode
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchalbums
        description: Update single album.
        call: catalog-albums.patchalbums
        with:
          id: rest.path.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v2/albums/{id}/relationships/albumStatistics
      name: albums-id-relationships-albumStatistics
      description: REST surface for albums-id-relationships-albumStatistics.
      operations:
      - method: GET
        name: getalbums
        description: Get albumStatistics relationship ("to-one").
        call: catalog-albums.getalbums
        with:
          id: rest.path.id
          include: rest.query.include
          shareCode: rest.query.shareCode
        outputParameters:
        - type: object
          mapping: $.
    - path: /v2/albums/{id}/relationships/artists
      name: albums-id-relationships-artists
      description: REST surface for albums-id-relationships-artists.
      operations:
      - method: GET
        name: getalbums
        description: Get artists relationship ("to-many").
        call: catalog-albums.getalbums
        with:
          id: rest.path.id
          page[cursor]: rest.query.page[cursor]
          countryCode: rest.query.countryCode
          include: rest.query.include
          shareCode: rest.query.shareCode
        outputParameters:
        - type: object
          mapping: $.
    - path: /v2/albums/{id}/relationships/coverArt
      name: albums-id-relationships-coverArt
      description: REST surface for albums-id-relationships-coverArt.
      operations:
      - method: GET
        name: getalbums
        description: Get coverArt relationship ("to-many").
        call: catalog-albums.getalbums
        with:
          id: rest.path.id
          page[cursor]: rest.query.page[cursor]
          countryCode: rest.query.countryCode
          include: rest.query.include
          shareCode: rest.query.shareCode
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchalbums
        description: Update coverArt relationship ("to-many").
        call: catalog-albums.patchalbums
        with:
          id: rest.path.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v2/albums/{id}/relationships/genres
      name: albums-id-relationships-genres
      description: REST surface for albums-id-relationships-genres.
      operations:
      - method: GET
        name: getalbums
        description: Get genres relationship ("to-many").
        call: catalog-albums.getalbums
        with:
          id: rest.path.id
          page[cursor]: rest.query.page[cursor]
          countryCode: rest.query.countryCode
          include: rest.query.include
          shareCode: rest.query.shareCode
        outputParameters:
        - type: object
          mapping: $.
    - path: /v2/albums/{id}/relationships/items
      name: albums-id-relationships-items
      description: REST surface for albums-id-relationships-items.
      operations:
      - method: GET
        name: getalbums
        description: Get items relationship ("to-many").
        call: catalog-albums.getalbums
        with:
          id: rest.path.id
          page[cursor]: rest.query.page[cursor]
          countryCode: rest.query.countryCode
          include: rest.query.include
          shareCode: rest.query.shareCode
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchalbums
        description: Update items relationship ("to-many").
        call: catalog-albums.patchalbums
        with:
          id: rest.path.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v2/albums/{id}/relationships/owners
      name: albums-id-relationships-owners
      description: REST surface for albums-id-relationships-owners.
      operations:
      - method: GET
        name: getalbums
        description: Get owners relationship ("to-many").
        call: catalog-albums.getalbums
        with:
          id: rest.path.id
          include: rest.query.include
          page[cursor]: rest.query.page[cursor]
          shareCode: rest.query.shareCode
        outputParameters:
        - type: object
          mapping: $.
    - path: /v2/albums/{id}/relationships/priceConfig
      name: albums-id-relationships-priceConfig
      description: REST surface for albums-id-relationships-priceConfig.
      operations:
      - method: GET
        name: getalbums
        description: Get priceConfig relationship ("to-one").
        call: catalog-albums.getalbums
        with:
          id: rest.path.id
          countryCode: rest.query.countryCode
          include: rest.query.include
          shareCode: rest.query.shareCode
        outputParameters:
        - type: object
          mapping: $.
    - path: /v2/albums/{id}/relationships/providers
      name: albums-id-relationships-providers
      description: REST surface for albums-id-relationships-providers.
      operations:
      - method: GET
        name: getalbums
        description: Get providers relationship ("to-many").
        call: catalog-albums.getalbums
        with:
          id: rest.path.id
          countryCode: rest.query.countryCode
          include: rest.query.include
          page[cursor]: rest.query.page[cursor]
          shareCode: rest.query.shareCode
        outputParameters:
        - type: object
          mapping: $.
    - path: /v2/albums/{id}/relationships/replacement
      name: albums-id-relationships-replacement
      description: REST surface for albums-id-relationships-replacement.
      operations:
      - method: GET
        name: getalbums
        description: Get replacement relationship ("to-one").
        call: catalog-albums.getalbums
        with:
          id: rest.path.id
          countryCode: rest.query.countryCode
          include: rest.query.include
          shareCode: rest.query.shareCode
        outputParameters:
        - type: object
          mapping: $.
    - path: /v2/albums/{id}/relationships/shares
      name: albums-id-relationships-shares
      description: REST surface for albums-id-relationships-shares.
      operations:
      - method: GET
        name: getalbums
        description: Get shares relationship ("to-many").
        call: catalog-albums.getalbums
        with:
          id: rest.path.id
          include: rest.query.include
          page[cursor]: rest.query.page[cursor]
          shareCode: rest.query.shareCode
        outputParameters:
        - type: object
          mapping: $.
    - path: /v2/albums/{id}/relationships/similarAlbums
      name: albums-id-relationships-similarAlbums
      description: REST surface for albums-id-relationships-similarAlbums.
      operations:
      - method: GET
        name: getalbums
        description: Get similarAlbums relationship ("to-many").
        call: catalog-albums.getalbums
        with:
          id: rest.path.id
          page[cursor]: rest.query.page[cursor]
          countryCode: rest.query.countryCode
          include: rest.query.include
          shareCode: rest.query.shareCode
        outputParameters:
        - type: object
          mapping: $.
    - path: /v2/albums/{id}/relationships/suggestedCoverArts
      name: albums-id-relationships-suggestedCoverArts
      description: REST surface for albums-id-relationships-suggestedCoverArts.
      operations:
      - method: GET
        name: getalbums
        description: Get suggestedCoverArts relationship ("to-many").
        call: catalog-albums.getalbums
        with:
          id: rest.path.id
          include: rest.query.include
          page[cursor]: rest.query.page[cursor]
          shareCode: rest.query.shareCode
        outputParameters:
        - type: object
          mapping: $.
    - path: /v2/albums/{id}/relationships/usageRules
      name: albums-id-relationships-usageRules
      description: REST surface for albums-id-relationships-usageRules.
      operations:
      - method: GET
        name: getalbums
        description: Get usageRules relationship ("to-one").
        call: catalog-albums.getalbums
        with:
          id: rest.path.id
          countryCode: rest.query.countryCode
          include: rest.query.include
          shareCode: rest.query.shareCode


# --- truncated at 32 KB (40 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/tidal/refs/heads/main/capabilities/catalog-albums.yaml