Getting Started

Welcome to the Digiteal API! Our platform provides a unified interface for payments, e-invoicing (Peppol), and real-time bank verification.

1. Account Registration

Before you start coding, we recommend creating an account in our Test Environment to access our sandbox features.

  • Step 1: Create your test account at web-test.digiteal.eu.
  • Step 2: Follow our Account Registration Guide for a step-by-step walkthrough.
  • Step 3: Your API credentials are the same email (username) and password you used to create your account.

2. Environments

Digiteal provides two environments. Use Test for development and Production for live financial data.

EnvironmentBase URL
Sandbox (Test)https://test.digiteal.eu/api/v1
Production (Live)https://app.digiteal.eu/api/v1

3. Public Call: Check a Peppol Participant (No Auth)

You can test your connectivity immediately without any authentication by checking a participant's information on the Peppol network using our Production environment.

Try it in Production:

curl --request GET \
     --url https://app.digiteal.eu/api/v1/peppol/public/participants/0208%3A0630675588 \
     --header 'accept: application/json'

4. Authenticated Call: VoP IBAN Check

The Verification of Payee (VoP) API is a powerful tool that verifies in real-time if a provided name matches the actual bank account holder of an IBAN.

The Request

Replace 'your-email:your-password' with the credentials you used for account registration:

curl 	--request POST \
			--url https://test.digiteal.eu/api/v1/ibanAccountHolderVerification \
      -u 'username:password' \
      --header 'accept: application/json' \
      --header 'content-type: application/json' \
    	 --data '{
       "iban": "BE03130000000184",
       "name": "Digiteal SA"
       }'

The Response

A successful call returns a match result along with the bank's BIC and name:

{
  "vopMatchResult": {
    "result": "MATCH"
  },
  "bankAccountHolder": {
    "name": "Digiteal SA"
  },
  "bank": {
    "bic": "DIGEBEB2",
    "name": "Digiteal SA"
  }
}

5. Next Steps

Now that you've made your first successful call, explore our core products:

  • Payments: Create QR codes and payment links.
  • Peppol e-Invoicing: Automate your invoicing via the Peppol network.
  • VoP API Reference: View all possible match results (e.g., CLOSE_MATCH, NO_MATCH) and identifier types.