Nuvei · Capability

Nuvei 3DS API — Authentication

3D Secure 2 authentication flows for PSD2 SCA compliance.

Nuvei 3DS API — Authentication 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 rooted at /v1/three-ds.

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

Tagged areas include Nuvei, 3DS, and SCA.

Run with Naftiko Nuvei3DSSCA

What You Can Do

POST
Getcard3ddetails
/v1/three-ds/details
POST
Authenticate3d
/v1/three-ds/authenticate

MCP Tools

nuvei-get-card-3d-details

Nuvei Get Card 3D Details

read-only idempotent
nuvei-authenticate-3d

Nuvei Authenticate 3D

Capability Spec

three-ds-authentication.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Nuvei 3DS API — Authentication
  description: 3D Secure 2 authentication flows for PSD2 SCA compliance.
  tags:
  - Nuvei
  - 3DS
  - SCA
  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: three-ds
    baseUri: https://secure.safecharge.com
    resources:
    - name: getCard3DDetails
      path: /ppp/api/v1/getCard3DDetails.do
      operations:
      - name: getcard3ddetails
        method: POST
        description: Nuvei Get Card 3D Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          required: true
    - name: authenticate3d
      path: /ppp/api/v1/authenticate3d.do
      operations:
      - name: authenticate3d
        method: POST
        description: Nuvei Authenticate 3D
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          required: true
    authentication:
      type: none
  exposes:
  - type: rest
    namespace: three-ds-rest
    port: 8080
    resources:
    - path: /v1/three-ds/details
      name: getCard3DDetails
      operations:
      - method: POST
        name: getcard3ddetails
        call: three-ds.getcard3ddetails
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/three-ds/authenticate
      name: authenticate3d
      operations:
      - method: POST
        name: authenticate3d
        call: three-ds.authenticate3d
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: three-ds-mcp
    port: 9090
    transport: http
    tools:
    - name: nuvei-get-card-3d-details
      description: Nuvei Get Card 3D Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: three-ds.getcard3ddetails
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: nuvei-authenticate-3d
      description: Nuvei Authenticate 3D
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: three-ds.authenticate3d
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.