VTEX · Capability

VTex Pricing API — Pricing Configuration

VTex Pricing API — Pricing Configuration. 2 operations. Lead operation: VTex Get pricing configuration. Self-contained Naftiko capability covering one Vtex business surface.

Run with Naftiko VtexPricing Configuration

What You Can Do

GET
Getpricingconfig — VTex Get pricing configuration
/v1/pricing/config
GET
Getpricingv2status — VTex Get pricing v2 status
/v1/pricing/migration

MCP Tools

vtex-get-pricing-configuration

VTex Get pricing configuration

read-only idempotent
vtex-get-pricing-v2-status

VTex Get pricing v2 status

read-only idempotent

Capability Spec

pricing-pricing-configuration.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: VTex Pricing API — Pricing Configuration
  description: 'VTex Pricing API — Pricing Configuration. 2 operations. Lead operation: VTex Get pricing configuration. Self-contained
    Naftiko capability covering one Vtex business surface.'
  tags:
  - Vtex
  - Pricing Configuration
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    VTEX_API_KEY: VTEX_API_KEY
capability:
  consumes:
  - type: http
    namespace: pricing-pricing-configuration
    baseUri: https://api.vtex.com/{accountName}
    description: VTex Pricing API — Pricing Configuration business capability. Self-contained, no shared references.
    resources:
    - name: pricing-config
      path: /pricing/config
      operations:
      - name: getpricingconfig
        method: GET
        description: VTex Get pricing configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Content-Type
          in: header
          type: string
          description: Describes the type of the content being sent.
          required: true
        - name: Accept
          in: header
          type: string
          description: HTTP Client Negotiation _Accept_ Header. Indicates the types of responses the client can understand.
          required: true
    - name: pricing-migration
      path: /pricing/migration
      operations:
      - name: getpricingv2status
        method: GET
        description: VTex Get pricing v2 status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Content-Type
          in: header
          type: string
          description: Describes the type of the content being sent.
          required: true
        - name: Accept
          in: header
          type: string
          description: HTTP Client Negotiation _Accept_ Header. Indicates the types of responses the client can understand.
          required: true
    authentication:
      type: apikey
      key: X-VTEX-API-AppKey
      value: '{{env.VTEX_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: pricing-pricing-configuration-rest
    port: 8080
    description: REST adapter for VTex Pricing API — Pricing Configuration. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/pricing/config
      name: pricing-config
      description: REST surface for pricing-config.
      operations:
      - method: GET
        name: getpricingconfig
        description: VTex Get pricing configuration
        call: pricing-pricing-configuration.getpricingconfig
        with:
          Content-Type: rest.Content-Type
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/pricing/migration
      name: pricing-migration
      description: REST surface for pricing-migration.
      operations:
      - method: GET
        name: getpricingv2status
        description: VTex Get pricing v2 status
        call: pricing-pricing-configuration.getpricingv2status
        with:
          Content-Type: rest.Content-Type
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: pricing-pricing-configuration-mcp
    port: 9090
    transport: http
    description: MCP adapter for VTex Pricing API — Pricing Configuration. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: vtex-get-pricing-configuration
      description: VTex Get pricing configuration
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: pricing-pricing-configuration.getpricingconfig
      with:
        Content-Type: tools.Content-Type
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.
    - name: vtex-get-pricing-v2-status
      description: VTex Get pricing v2 status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: pricing-pricing-configuration.getpricingv2status
      with:
        Content-Type: tools.Content-Type
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.