Nuvei · Capability

Nuvei Payments API — Payments

Nuvei Payments API — Payments. End-to-end card and APM payment processing. Self-contained Naftiko capability covering one Nuvei business surface.

Nuvei Payments API — Payments is a Naftiko capability published by Nuvei, one of 9 capabilities the APIs.io network indexes for this provider. It bundles 2 operations across the POST method.

The capability includes 1 read-only operation and 1 state-changing operation. Lead operation: Nuvei Create Payment. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Nuvei and Payments.

Run with Naftiko NuveiPayments

What You Can Do

POST
Createpayment — Nuvei Create Payment
/v1/payment
POST
Getpaymentstatus — Nuvei Get Payment Status
/v1/payment-status

MCP Tools

nuvei-create-payment

Nuvei Create Payment

nuvei-get-payment-status

Nuvei Get Payment Status

read-only idempotent

Capability Spec

payments-payments.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Nuvei Payments API — Payments
  description: Nuvei Payments API — Payments. End-to-end card and APM payment processing. Self-contained
    Naftiko capability covering one Nuvei business surface.
  tags:
  - Nuvei
  - Payments
  created: '2026-05-24'
  modified: '2026-05-24'
binds:
- namespace: env
  keys:
    NUVEI_MERCHANT_ID: NUVEI_MERCHANT_ID
    NUVEI_MERCHANT_SITE_ID: NUVEI_MERCHANT_SITE_ID
    NUVEI_MERCHANT_SECRET_KEY: NUVEI_MERCHANT_SECRET_KEY
capability:
  consumes:
  - type: http
    namespace: payments-payments
    baseUri: https://secure.safecharge.com
    description: Nuvei Payments business capability.
    resources:
    - name: payment
      path: /ppp/api/v1/payment.do
      operations:
      - name: createpayment
        method: POST
        description: Nuvei Create Payment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON) including merchantId, merchantSiteId, amount, currency,
            paymentOption, timeStamp, and SHA-256 checksum.
          required: true
    - name: getPaymentStatus
      path: /ppp/api/v1/getPaymentStatus.do
      operations:
      - name: getpaymentstatus
        method: POST
        description: Nuvei Get Payment Status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          required: true
    authentication:
      type: none
  exposes:
  - type: rest
    namespace: payments-payments-rest
    port: 8080
    description: REST adapter for Nuvei Payments.
    resources:
    - path: /v1/payment
      name: payment
      description: REST surface for payment creation.
      operations:
      - method: POST
        name: createpayment
        description: Nuvei Create Payment
        call: payments-payments.createpayment
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/payment-status
      name: getPaymentStatus
      operations:
      - method: POST
        name: getpaymentstatus
        description: Nuvei Get Payment Status
        call: payments-payments.getpaymentstatus
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: payments-payments-mcp
    port: 9090
    transport: http
    description: MCP adapter for Nuvei Payments.
    tools:
    - name: nuvei-create-payment
      description: Nuvei Create Payment
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: payments-payments.createpayment
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: nuvei-get-payment-status
      description: Nuvei Get Payment Status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: payments-payments.getpaymentstatus
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.