Flutterwave · Capability

Flutterwave Payments API — Payment Methods

Flutterwave Payment Methods tokenisation and lookup. 3 operations.

Flutterwave Payments API — Payment Methods is a Naftiko capability published by Flutterwave, one of 18 capabilities the APIs.io network indexes for this provider. It bundles 3 operations across the GET and POST methods rooted at /v4/payment-methods.

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

Tagged areas include Flutterwave, Payments, and Payment Methods.

Run with Naftiko FlutterwavePaymentsPayment Methods

What You Can Do

GET
Listpaymentmethods — Flutterwave List Payment Methods
/v4/payment-methods
POST
Createpaymentmethod — Flutterwave Create A Payment Method
/v4/payment-methods
GET
Getpaymentmethod — Flutterwave Retrieve A Payment Method
/v4/payment-methods/{id}

MCP Tools

flutterwave-list-payment-methods

Flutterwave List Payment Methods

read-only idempotent
flutterwave-create-payment-method

Flutterwave Create A Payment Method

flutterwave-get-payment-method

Flutterwave Retrieve A Payment Method

read-only idempotent

Capability Spec

payments-payment-methods.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Flutterwave Payments API — Payment Methods
  description: Flutterwave Payment Methods tokenisation and lookup. 3 operations.
  tags: [Flutterwave, Payments, Payment Methods]
  created: '2026-05-24'
  modified: '2026-05-24'
binds:
- namespace: env
  keys: { FLUTTERWAVE_ACCESS_TOKEN: FLUTTERWAVE_ACCESS_TOKEN }
capability:
  consumes:
  - type: http
    namespace: payments-payment-methods
    baseUri: https://api.flutterwave.cloud/f4b/production
    description: Flutterwave Payment Methods business capability.
    resources:
    - name: payment-methods
      path: /payment-methods
      operations:
      - { name: listpaymentmethods, method: GET, description: Flutterwave List Payment Methods, outputRawFormat: json,
          outputParameters: [{ name: result, type: object, value: $. }] }
      - name: createpaymentmethod
        method: POST
        description: Flutterwave Create A Payment Method
        outputRawFormat: json
        outputParameters: [{ name: result, type: object, value: $. }]
        inputParameters: [{ name: body, in: body, type: object, required: true }]
    - name: payment-methods-id
      path: /payment-methods/{id}
      operations:
      - { name: getpaymentmethod, method: GET, description: Flutterwave Retrieve A Payment Method, outputRawFormat: json,
          outputParameters: [{ name: result, type: object, value: $. }] }
    authentication: { type: bearer, value: '{{env.FLUTTERWAVE_ACCESS_TOKEN}}', placement: header }
  exposes:
  - type: rest
    namespace: payments-payment-methods-rest
    port: 8080
    description: REST adapter for Flutterwave Payment Methods.
    resources:
    - path: /v4/payment-methods
      name: payment-methods
      operations:
      - { method: GET, name: listpaymentmethods, description: Flutterwave List Payment Methods,
          call: payments-payment-methods.listpaymentmethods, outputParameters: [{ type: object, mapping: $. }] }
      - method: POST
        name: createpaymentmethod
        description: Flutterwave Create A Payment Method
        call: payments-payment-methods.createpaymentmethod
        with: { body: rest.body }
        outputParameters: [{ type: object, mapping: $. }]
    - path: /v4/payment-methods/{id}
      name: payment-methods-id
      operations:
      - { method: GET, name: getpaymentmethod, description: Flutterwave Retrieve A Payment Method,
          call: payments-payment-methods.getpaymentmethod, outputParameters: [{ type: object, mapping: $. }] }
  - type: mcp
    namespace: payments-payment-methods-mcp
    port: 9090
    transport: http
    description: MCP adapter for Flutterwave Payment Methods.
    tools:
    - { name: flutterwave-list-payment-methods, description: Flutterwave List Payment Methods,
        hints: { readOnly: true, destructive: false, idempotent: true },
        call: payments-payment-methods.listpaymentmethods, outputParameters: [{ type: object, mapping: $. }] }
    - name: flutterwave-create-payment-method
      description: Flutterwave Create A Payment Method
      hints: { readOnly: false, destructive: false, idempotent: false }
      call: payments-payment-methods.createpaymentmethod
      with: { body: tools.body }
      outputParameters: [{ type: object, mapping: $. }]
    - { name: flutterwave-get-payment-method, description: Flutterwave Retrieve A Payment Method,
        hints: { readOnly: true, destructive: false, idempotent: true },
        call: payments-payment-methods.getpaymentmethod, outputParameters: [{ type: object, mapping: $. }] }