TIDAL · Capability

TIDAL Commerce API — Price Configurations

TIDAL Commerce API — Price Configurations. 3 operations. Self-contained Naftiko capability covering one TIDAL business surface.

TIDAL Commerce API — Price Configurations is a Naftiko capability published by TIDAL, one of 36 capabilities the APIs.io network indexes for this provider. It bundles 3 operations across the GET and POST methods rooted at /v2/priceConfigurations.

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

Tagged areas include TIDAL, Music, and priceConfigurations.

Run with Naftiko TIDALMusicpriceConfigurations

What You Can Do

GET
Getpriceconfigurations — Get multiple priceConfigurations.
/v2/priceConfigurations
POST
Postpriceconfigurations — Create single priceConfiguration.
/v2/priceConfigurations
GET
Getpriceconfigurations — Get single priceConfiguration.
/v2/priceConfigurations/{id}

MCP Tools

tidal-getpriceconfigurations

Get multiple priceConfigurations.

read-only idempotent
tidal-postpriceconfigurations

Create single priceConfiguration.

tidal-getpriceconfigurations

Get single priceConfiguration.

read-only idempotent

Capability Spec

commerce-price-configurations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: TIDAL Commerce API — Price Configurations
  description: TIDAL Commerce API — Price Configurations. 3 operations. Self-contained Naftiko capability covering one TIDAL
    business surface.
  tags:
  - TIDAL
  - Music
  - priceConfigurations
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    TIDAL_ACCESS_TOKEN: TIDAL_ACCESS_TOKEN
capability:
  consumes:
  - type: http
    namespace: commerce-price-configurations
    baseUri: https://openapi.tidal.com
    description: TIDAL Commerce API — Price Configurations business capability. Self-contained, no shared references.
    resources:
    - name: priceConfigurations
      path: /priceConfigurations
      operations:
      - name: getpriceconfigurations
        method: GET
        description: Get multiple priceConfigurations.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: filter[id]
          in: query
          type: array
          description: List of price configurations IDs (e.g. `cHJpY2UtY29uZmlnLTEyMzpVUw`)
          required: false
      - name: postpriceconfigurations
        method: POST
        description: Create single priceConfiguration.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: JSON:API document request body.
          required: true
    - name: priceConfigurations-id
      path: /priceConfigurations/{id}
      operations:
      - name: getpriceconfigurations
        method: GET
        description: Get single priceConfiguration.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Price configuration id
          required: true
    authentication:
      type: bearer
      value: '{{env.TIDAL_ACCESS_TOKEN}}'
      placement: header
      header: Authorization
      prefix: 'Bearer '
  exposes:
  - type: rest
    namespace: commerce-price-configurations-rest
    port: 8080
    description: REST adapter for TIDAL Commerce API — Price Configurations. One Spectral-compliant resource per consumed
      operation, prefixed with /v2.
    resources:
    - path: /v2/priceConfigurations
      name: priceConfigurations
      description: REST surface for priceConfigurations.
      operations:
      - method: GET
        name: getpriceconfigurations
        description: Get multiple priceConfigurations.
        call: commerce-price-configurations.getpriceconfigurations
        with:
          filter[id]: rest.query.filter[id]
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: postpriceconfigurations
        description: Create single priceConfiguration.
        call: commerce-price-configurations.postpriceconfigurations
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v2/priceConfigurations/{id}
      name: priceConfigurations-id
      description: REST surface for priceConfigurations-id.
      operations:
      - method: GET
        name: getpriceconfigurations
        description: Get single priceConfiguration.
        call: commerce-price-configurations.getpriceconfigurations
        with:
          id: rest.path.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: commerce-price-configurations-mcp
    port: 9090
    transport: http
    description: MCP adapter for TIDAL Commerce API — Price Configurations. One tool per consumed operation.
    tools:
    - name: tidal-getpriceconfigurations
      description: Get multiple priceConfigurations.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: commerce-price-configurations.getpriceconfigurations
      with:
        filter[id]: tools.filter[id]
      outputParameters:
      - type: object
        mapping: $.
    - name: tidal-postpriceconfigurations
      description: Create single priceConfiguration.
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: commerce-price-configurations.postpriceconfigurations
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: tidal-getpriceconfigurations
      description: Get single priceConfiguration.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: commerce-price-configurations.getpriceconfigurations
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.