Tremendous · Capability

Tremendous API — Products

Tremendous API — Products. 1 operations. Lead operation: List Products. Self-contained Naftiko capability covering one Tremendous business surface.

Run with Naftiko TremendousProducts

What You Can Do

GET
Listproducts — List Products
/v1/products

MCP Tools

list-products

List Products

read-only idempotent

Capability Spec

tremendous-products.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Tremendous API — Products
  description: 'Tremendous API — Products. 1 operations. Lead operation: List Products. Self-contained Naftiko capability
    covering one Tremendous business surface.'
  tags:
  - Tremendous
  - Products
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TREMENDOUS_API_KEY: TREMENDOUS_API_KEY
capability:
  consumes:
  - type: http
    namespace: tremendous-products
    baseUri: https://testflight.tremendous.com/api/v2
    description: Tremendous API — Products business capability. Self-contained, no shared references.
    resources:
    - name: products
      path: /products
      operations:
      - name: listproducts
        method: GET
        description: List Products
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: country
          in: query
          type: string
          description: Filter by country (ISO 3166-1 alpha-2)
        - name: currency_codes
          in: query
          type: string
          description: Filter by currency code (comma-separated)
    authentication:
      type: bearer
      token: '{{env.TREMENDOUS_API_KEY}}'
  exposes:
  - type: rest
    namespace: tremendous-products-rest
    port: 8080
    description: REST adapter for Tremendous API — Products. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/products
      name: products
      description: REST surface for products.
      operations:
      - method: GET
        name: listproducts
        description: List Products
        call: tremendous-products.listproducts
        with:
          country: rest.country
          currency_codes: rest.currency_codes
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: tremendous-products-mcp
    port: 9090
    transport: http
    description: MCP adapter for Tremendous API — Products. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-products
      description: List Products
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tremendous-products.listproducts
      with:
        country: tools.country
        currency_codes: tools.currency_codes
      outputParameters:
      - type: object
        mapping: $.