Skip to main content
Mandatory complianceRequired for all SEPA Credit Transfers and Instant SEPA Credit Transfers under the European Instant Payments Regulation (IPR), with a mandatory implementation deadline of October 9, 2025, for all Payment Service Providers (PSPs) in the Eurozone offering SEPA Credit Transfers.

What is Verification of Payee?

Verification of Payee (VoP) is a new requirement from the SEPA scheme that verifies the beneficiary information to reduce fraud and misdirected payments. VoP applies to all countries in the SEPA region, with mandatory implementation deadlines of October 9, 2025 for Eurozone PSPs and January 9, 2027 for non-Eurozone PSPs. The service is free of charge for Qonto account holders as mandated by the EPC’s regulation.

How to Implement

Creating a SEPA transfer now requires 2 steps:
  • Step 1: Verify payee (i.e. VoP check): Call our new Verify Payee endpoint before creating any SEPA transfers. This API call returns:
    • the outcome of the verification (4 possible options)
    • a token
  • Step 2: Create a transfer: Call your existing transfer endpoint, but additionally include the token received in step 1

Available verification endpoints

  • Single verification: Verify individual payee details with a POST request to /v2/sepa/verify_payee (see Verify SEPA payee)
  • Bulk verification: Verify multiple payees at once with a POST request to /v2/sepa/bulk_verify_payee (see Bulk verify SEPA payees)
  • Skip verification: Opt-out from verification when appropriate with a POST request to /v2/sepa/skip_verify_payee (see Skip verify SEPA payee)

How to display VoP results to users

According to the new regulation, the VoP outcome must be displayed to the end-user initiating the payment, so they can make an informed decision before authorizing the transfer. Besides these technical changes, you will also need to make the following operational changes:
  • For manual transfers via API: the end-user must review the VoP outcome and make a decision based on the result
  • For automated transfers via API: we recommend including a manual review step whenever the VoP result is not a full match (i.e. MATCH_RESULT_MATCH)
Recommendations:
  • Close Match
For close match results (MATCH_RESULT_CLOSE_MATCH ), display the suggested name to the user: Close Match Result
  • No Match
For no match results (MATCH_RESULT_NO_MATCH ), display a warning message to the user to proceed with caution and offer the possibility to edit details: No Match Result
  • Verification not possible
For verification not possible results (MATCH_RESULT_NOT_POSSIBLE), display a warning message that the verification is unavailable: Verification Not Possible Result
I