TIDAL · Capability

TIDAL Claims API — Content Claims

TIDAL Claims API — Content Claims. 6 operations. Self-contained Naftiko capability covering one TIDAL business surface.

TIDAL Claims API — Content Claims is a Naftiko capability published by TIDAL, one of 36 capabilities the APIs.io network indexes for this provider. It bundles 6 operations across the GET and POST methods rooted at /v2/contentClaims.

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

Tagged areas include TIDAL, Music, and contentClaims.

Run with Naftiko TIDALMusiccontentClaims

What You Can Do

GET
Getcontentclaims — Get multiple contentClaims.
/v2/contentClaims
POST
Postcontentclaims — Create single contentClaim.
/v2/contentClaims
GET
Getcontentclaims — Get single contentClaim.
/v2/contentClaims/{id}
GET
Getcontentclaims — Get claimedResource relationship ("to-one").
/v2/contentClaims/{id}/relationships/claimedResource
GET
Getcontentclaims — Get claimingArtist relationship ("to-one").
/v2/contentClaims/{id}/relationships/claimingArtist
GET
Getcontentclaims — Get owners relationship ("to-many").
/v2/contentClaims/{id}/relationships/owners

MCP Tools

tidal-getcontentclaims

Get multiple contentClaims.

read-only idempotent
tidal-postcontentclaims

Create single contentClaim.

tidal-getcontentclaims

Get single contentClaim.

read-only idempotent
tidal-getcontentclaims

Get claimedResource relationship ("to-one").

read-only idempotent
tidal-getcontentclaims

Get claimingArtist relationship ("to-one").

read-only idempotent
tidal-getcontentclaims

Get owners relationship ("to-many").

read-only idempotent

Capability Spec

claims-content-claims.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: TIDAL Claims API — Content Claims
  description: TIDAL Claims API — Content Claims. 6 operations. Self-contained Naftiko capability covering one TIDAL business
    surface.
  tags:
  - TIDAL
  - Music
  - contentClaims
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    TIDAL_ACCESS_TOKEN: TIDAL_ACCESS_TOKEN
capability:
  consumes:
  - type: http
    namespace: claims-content-claims
    baseUri: https://openapi.tidal.com
    description: TIDAL Claims API — Content Claims business capability. Self-contained, no shared references.
    resources:
    - name: contentClaims
      path: /contentClaims
      operations:
      - name: getcontentclaims
        method: GET
        description: Get multiple contentClaims.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: include
          in: query
          type: array
          description: 'Allows the client to customize which related resources should be returned. Available options: claimedResource,
            claimingArtist, owners'
          required: false
        - name: filter[owners.id]
          in: query
          type: array
          description: User id. Use `me` for the authenticated user
          required: false
      - name: postcontentclaims
        method: POST
        description: Create single contentClaim.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: JSON:API document request body.
          required: true
    - name: contentClaims-id
      path: /contentClaims/{id}
      operations:
      - name: getcontentclaims
        method: GET
        description: Get single contentClaim.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Content claim id
          required: true
        - name: include
          in: query
          type: array
          description: 'Allows the client to customize which related resources should be returned. Available options: claimedResource,
            claimingArtist, owners'
          required: false
    - name: contentClaims-id-relationships-claimedResource
      path: /contentClaims/{id}/relationships/claimedResource
      operations:
      - name: getcontentclaims
        method: GET
        description: Get claimedResource relationship ("to-one").
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Content claim id
          required: true
        - name: include
          in: query
          type: array
          description: 'Allows the client to customize which related resources should be returned. Available options: claimedResource'
          required: false
    - name: contentClaims-id-relationships-claimingArtist
      path: /contentClaims/{id}/relationships/claimingArtist
      operations:
      - name: getcontentclaims
        method: GET
        description: Get claimingArtist relationship ("to-one").
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Content claim id
          required: true
        - name: include
          in: query
          type: array
          description: 'Allows the client to customize which related resources should be returned. Available options: claimingArtist'
          required: false
    - name: contentClaims-id-relationships-owners
      path: /contentClaims/{id}/relationships/owners
      operations:
      - name: getcontentclaims
        method: GET
        description: Get owners relationship ("to-many").
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Content claim 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
    authentication:
      type: bearer
      value: '{{env.TIDAL_ACCESS_TOKEN}}'
      placement: header
      header: Authorization
      prefix: 'Bearer '
  exposes:
  - type: rest
    namespace: claims-content-claims-rest
    port: 8080
    description: REST adapter for TIDAL Claims API — Content Claims. One Spectral-compliant resource per consumed operation,
      prefixed with /v2.
    resources:
    - path: /v2/contentClaims
      name: contentClaims
      description: REST surface for contentClaims.
      operations:
      - method: GET
        name: getcontentclaims
        description: Get multiple contentClaims.
        call: claims-content-claims.getcontentclaims
        with:
          include: rest.query.include
          filter[owners.id]: rest.query.filter[owners.id]
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: postcontentclaims
        description: Create single contentClaim.
        call: claims-content-claims.postcontentclaims
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v2/contentClaims/{id}
      name: contentClaims-id
      description: REST surface for contentClaims-id.
      operations:
      - method: GET
        name: getcontentclaims
        description: Get single contentClaim.
        call: claims-content-claims.getcontentclaims
        with:
          id: rest.path.id
          include: rest.query.include
        outputParameters:
        - type: object
          mapping: $.
    - path: /v2/contentClaims/{id}/relationships/claimedResource
      name: contentClaims-id-relationships-claimedResource
      description: REST surface for contentClaims-id-relationships-claimedResource.
      operations:
      - method: GET
        name: getcontentclaims
        description: Get claimedResource relationship ("to-one").
        call: claims-content-claims.getcontentclaims
        with:
          id: rest.path.id
          include: rest.query.include
        outputParameters:
        - type: object
          mapping: $.
    - path: /v2/contentClaims/{id}/relationships/claimingArtist
      name: contentClaims-id-relationships-claimingArtist
      description: REST surface for contentClaims-id-relationships-claimingArtist.
      operations:
      - method: GET
        name: getcontentclaims
        description: Get claimingArtist relationship ("to-one").
        call: claims-content-claims.getcontentclaims
        with:
          id: rest.path.id
          include: rest.query.include
        outputParameters:
        - type: object
          mapping: $.
    - path: /v2/contentClaims/{id}/relationships/owners
      name: contentClaims-id-relationships-owners
      description: REST surface for contentClaims-id-relationships-owners.
      operations:
      - method: GET
        name: getcontentclaims
        description: Get owners relationship ("to-many").
        call: claims-content-claims.getcontentclaims
        with:
          id: rest.path.id
          include: rest.query.include
          page[cursor]: rest.query.page[cursor]
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: claims-content-claims-mcp
    port: 9090
    transport: http
    description: MCP adapter for TIDAL Claims API — Content Claims. One tool per consumed operation.
    tools:
    - name: tidal-getcontentclaims
      description: Get multiple contentClaims.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: claims-content-claims.getcontentclaims
      with:
        include: tools.include
        filter[owners.id]: tools.filter[owners.id]
      outputParameters:
      - type: object
        mapping: $.
    - name: tidal-postcontentclaims
      description: Create single contentClaim.
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: claims-content-claims.postcontentclaims
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: tidal-getcontentclaims
      description: Get single contentClaim.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: claims-content-claims.getcontentclaims
      with:
        id: tools.id
        include: tools.include
      outputParameters:
      - type: object
        mapping: $.
    - name: tidal-getcontentclaims
      description: Get claimedResource relationship ("to-one").
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: claims-content-claims.getcontentclaims
      with:
        id: tools.id
        include: tools.include
      outputParameters:
      - type: object
        mapping: $.
    - name: tidal-getcontentclaims
      description: Get claimingArtist relationship ("to-one").
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: claims-content-claims.getcontentclaims
      with:
        id: tools.id
        include: tools.include
      outputParameters:
      - type: object
        mapping: $.
    - name: tidal-getcontentclaims
      description: Get owners relationship ("to-many").
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: claims-content-claims.getcontentclaims
      with:
        id: tools.id
        include: tools.include
        page[cursor]: tools.page[cursor]
      outputParameters:
      - type: object
        mapping: $.