Nomba · Capability

Nomba Global Payout API — Exchange Rates

Nomba Global Payout API — Exchange Rates. 2 operations. Lead operation: Fetch live exchange rates. Self-contained Naftiko capability covering one Nomba business surface.

Run with Naftiko NombaExchange Rates

What You Can Do

GET
Fetchexchangerates — Fetch live exchange rates
/v1/v1/global-payout/rates
POST
Lockexchangerate — Lock an exchange rate
/v1/v1/global-payout/rates/lock

MCP Tools

fetch-live-exchange-rates

Fetch live exchange rates

read-only idempotent
lock-exchange-rate

Lock an exchange rate

Capability Spec

global-payout-exchange-rates.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Nomba Global Payout API — Exchange Rates
  description: 'Nomba Global Payout API — Exchange Rates. 2 operations. Lead operation: Fetch live exchange rates. Self-contained
    Naftiko capability covering one Nomba business surface.'
  tags:
  - Nomba
  - Exchange Rates
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    NOMBA_API_KEY: NOMBA_API_KEY
capability:
  consumes:
  - type: http
    namespace: global-payout-exchange-rates
    baseUri: https://api.nomba.com
    description: Nomba Global Payout API — Exchange Rates business capability. Self-contained, no shared references.
    resources:
    - name: v1-global-payout-rates
      path: /v1/global-payout/rates
      operations:
      - name: fetchexchangerates
        method: GET
        description: Fetch live exchange rates
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: sourceCurrency
          in: query
          type: string
          description: Filter rates by source currency.
        - name: destinationCurrency
          in: query
          type: string
          description: Filter rates by destination currency.
    - name: v1-global-payout-rates-lock
      path: /v1/global-payout/rates/lock
      operations:
      - name: lockexchangerate
        method: POST
        description: Lock an exchange rate
        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: global-payout-exchange-rates-rest
    port: 8080
    description: REST adapter for Nomba Global Payout API — Exchange Rates. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/global-payout/rates
      name: v1-global-payout-rates
      description: REST surface for v1-global-payout-rates.
      operations:
      - method: GET
        name: fetchexchangerates
        description: Fetch live exchange rates
        call: global-payout-exchange-rates.fetchexchangerates
        with:
          sourceCurrency: rest.sourceCurrency
          destinationCurrency: rest.destinationCurrency
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/global-payout/rates/lock
      name: v1-global-payout-rates-lock
      description: REST surface for v1-global-payout-rates-lock.
      operations:
      - method: POST
        name: lockexchangerate
        description: Lock an exchange rate
        call: global-payout-exchange-rates.lockexchangerate
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: global-payout-exchange-rates-mcp
    port: 9090
    transport: http
    description: MCP adapter for Nomba Global Payout API — Exchange Rates. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: fetch-live-exchange-rates
      description: Fetch live exchange rates
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: global-payout-exchange-rates.fetchexchangerates
      with:
        sourceCurrency: tools.sourceCurrency
        destinationCurrency: tools.destinationCurrency
      outputParameters:
      - type: object
        mapping: $.
    - name: lock-exchange-rate
      description: Lock an exchange rate
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: global-payout-exchange-rates.lockexchangerate
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.