Mangopay Transactions API

The Transactions API from Mangopay — 6 operation(s) for transactions.

Operations 6

GET /users/{userId}/transactions List Transactions for a User with SCA (Natural Owner User) #
GET /disputes/{disputeId}/transactions List Transactions for a Dispute #
GET /mandates/{mandateId}/transactions List Transactions for a Mandate #
GET /preauthorizations/{preauthorizationid}/transactions List Transactions for a Preauthorization #
GET /bankaccounts/{legaluserbankaccountid}/transactions List Transactions for a Bank Account #
GET /cards/{cardchallengeflowid}/transactions List Transactions for a Card #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/mangopay-transactions-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

mangopay-transactions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Mangopay REST Bank Accounts Transactions API
  description: The Mangopay REST API enables platforms to manage users, e-wallets, pay-ins, payouts, transfers, foreign exchange, KYC/KYB identity verification, fraud prevention, and dispute handling for multi-party payment flows.
  version: '2.01'
  contact:
    name: Mangopay Support
    url: https://hub.mangopay.com
servers:
- url: https://api.mangopay.com/v2.01/{clientId}
  description: Production
  variables:
    clientId:
      default: your-client-id
      description: Your Mangopay Client ID
- url: https://api.sandbox.mangopay.com/v2.01/{clientId}
  description: Sandbox
  variables:
    clientId:
      default: your-client-id
      description: Your Mangopay Client ID
security:
- OAuth2: []
tags:
- name: Transactions
paths:
  /users/{userId}/transactions:
    get:
      tags:
      - Transactions
      summary: List Transactions for a User with SCA (Natural Owner User)
      operationId: get_users_userId_transactions
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      - name: ScaContext
        in: query
        required: false
        schema:
          type: string
        description: ''
      responses:
        '200':
          description: Success
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      description: '[https://mangopay.com/docs/endpoints/transactions#list-transactions-user](https://mangopay.com/docs/endpoints/transactions#list-transactions-user)'
  /disputes/{disputeId}/transactions:
    get:
      tags:
      - Transactions
      summary: List Transactions for a Dispute
      operationId: get_disputes_disputeId_transactions
      parameters:
      - name: disputeId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      description: '[https://mangopay.com/docs/endpoints/transactions#list-transactions-dispute](https://mangopay.com/docs/endpoints/transactions#list-transactions-dispute)'
  /mandates/{mandateId}/transactions:
    get:
      tags:
      - Transactions
      summary: List Transactions for a Mandate
      operationId: get_mandates_mandateId_transactions
      parameters:
      - name: mandateId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      description: '[https://mangopay.com/docs/endpoints/transactions#list-transactions-mandate](https://mangopay.com/docs/endpoints/transactions#list-transactions-mandate)'
  /preauthorizations/{preauthorizationid}/transactions:
    get:
      tags:
      - Transactions
      summary: List Transactions for a Preauthorization
      operationId: get_preauthorizations_preauthorizationid_transactions
      parameters:
      - name: preauthorizationid
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      description: '[https://mangopay.com/docs/endpoints/transactions#list-transactions-preauthorization](https://mangopay.com/docs/endpoints/transactions#list-transactions-preauthorization)'
  /bankaccounts/{legaluserbankaccountid}/transactions:
    get:
      tags:
      - Transactions
      summary: List Transactions for a Bank Account
      operationId: get_bankaccounts_legaluserbankaccountid_transactions
      parameters:
      - name: legaluserbankaccountid
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      description: '[https://mangopay.com/docs/endpoints/transactions#list-transactions-bank-account](https://mangopay.com/docs/endpoints/transactions#list-transactions-bank-account)'
  /cards/{cardchallengeflowid}/transactions:
    get:
      tags:
      - Transactions
      summary: List Transactions for a Card
      operationId: get_cards_cardchallengeflowid_transactions
      parameters:
      - name: cardchallengeflowid
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      description: '[https://mangopay.com/docs/endpoints/transactions#list-transactions-card](https://mangopay.com/docs/endpoints/transactions#list-transactions-card)'
components:
  securitySchemes:
    OAuth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://api.mangopay.com/v2.01/{clientId}/oauth/token
          scopes: {}