Nomba · Capability

Nomba Transactions API — Transactions

Nomba Transactions API — Transactions. 2 operations. Lead operation: Fetch account transactions. Self-contained Naftiko capability covering one Nomba business surface.

Run with Naftiko NombaTransactions

What You Can Do

GET
Fetchaccounttransactions — Fetch account transactions
/v1/v1/transactions/accounts
POST
Filteraccounttransactions — Filter through transactions
/v1/v1/transactions/accounts

MCP Tools

fetch-account-transactions

Fetch account transactions

read-only idempotent
filter-through-transactions

Filter through transactions

Capability Spec

transactions-transactions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Nomba Transactions API — Transactions
  description: 'Nomba Transactions API — Transactions. 2 operations. Lead operation: Fetch account transactions. Self-contained
    Naftiko capability covering one Nomba business surface.'
  tags:
  - Nomba
  - Transactions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    NOMBA_API_KEY: NOMBA_API_KEY
capability:
  consumes:
  - type: http
    namespace: transactions-transactions
    baseUri: https://api.nomba.com
    description: Nomba Transactions API — Transactions business capability. Self-contained, no shared references.
    resources:
    - name: v1-transactions-accounts
      path: /v1/transactions/accounts
      operations:
      - name: fetchaccounttransactions
        method: GET
        description: Fetch account transactions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page
          in: query
          type: integer
          description: The page number for paginated results.
        - name: pageSize
          in: query
          type: integer
          description: The number of results per page.
      - name: filteraccounttransactions
        method: POST
        description: Filter through transactions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.NOMBA_API_KEY}}'
  exposes:
  - type: rest
    namespace: transactions-transactions-rest
    port: 8080
    description: REST adapter for Nomba Transactions API — Transactions. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/transactions/accounts
      name: v1-transactions-accounts
      description: REST surface for v1-transactions-accounts.
      operations:
      - method: GET
        name: fetchaccounttransactions
        description: Fetch account transactions
        call: transactions-transactions.fetchaccounttransactions
        with:
          page: rest.page
          pageSize: rest.pageSize
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: filteraccounttransactions
        description: Filter through transactions
        call: transactions-transactions.filteraccounttransactions
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: transactions-transactions-mcp
    port: 9090
    transport: http
    description: MCP adapter for Nomba Transactions API — Transactions. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: fetch-account-transactions
      description: Fetch account transactions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: transactions-transactions.fetchaccounttransactions
      with:
        page: tools.page
        pageSize: tools.pageSize
      outputParameters:
      - type: object
        mapping: $.
    - name: filter-through-transactions
      description: Filter through transactions
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: transactions-transactions.filteraccounttransactions
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.