Developer Documentation

Unlock the full potential of VTUmax with our comprehensive API, hooks, and filters. Build seamless integrations and extend functionality effortlessly.

API Endpoints

Retrieve a list of transactions:

GET /api/v1/transactions

Initiate a payment:

POST /api/v1/payments

Check payment status:

GET /api/v1/payments/{id}/status

Hooks

Use the following hooks to customize VTUmax:

Filters

Modify VTUmax behavior with these filters:

Examples

Here are some examples to get you started:


    // Example: Fetch transactions
    fetch('/api/v1/transactions')
        .then(response => response.json())
        .then(data => console.log(data));

    // Example: Initiate a payment
    fetch('/api/v1/payments', {
        method: 'POST',
        headers: { 'Content-Type': 'application/json' },
        body: JSON.stringify({ amount: 1000, currency: 'NGN' })
    }).then(response => response.json())
      .then(data => console.log(data));
                

FAQ

Find answers to common questions: