Skip to main content
GET
/
v1
/
merchant
/
funding
Get merchant funding
curl --request GET \
  --url https://api.daya.co/v1/merchant/funding \
  --header 'X-Api-Key: <x-api-key>'
{
  "data": {
    "setup_status": "ACTIVE",
    "ngn_account": {
      "account_number": "0123456789",
      "account_name": "Acme Ltd",
      "bank_name": "Wema Bank",
      "bank_code": "035"
    },
    "crypto_wallet": {
      "wallet_id": "wallet_abc123",
      "addresses": [
        { "chain": "ETHEREUM", "address": "0xabcdef1234567890abcdef1234567890abcdef12" },
        { "chain": "BASE", "address": "0xabcdef1234567890abcdef1234567890abcdef12" },
        { "chain": "OPTIMISM", "address": "0xabcdef1234567890abcdef1234567890abcdef12" },
        { "chain": "BSC", "address": "0xabcdef1234567890abcdef1234567890abcdef12" },
        { "chain": "POLYGON", "address": "0xabcdef1234567890abcdef1234567890abcdef12" },
        { "chain": "APTOS", "address": "0xabcdef1234567890abcdef1234567890abcdef12" },
        { "chain": "TRON", "address": "TAbcdef1234567890abcdef1234567890ab" }
      ]
    }
  }
}

Overview

Returns the merchant’s funding setup status, permanent NGN collection account, and supported crypto wallet deposit addresses. Merchant funding deposits top up the merchant withdrawal balance. NGN funding deposits are converted to USD at the current rate before crediting. Successful merchant funding credits trigger a merchant email notification.

Authentication

X-Api-Key
string
required
Your merchant API key

Request Example

curl --request GET \
  --url https://api.daya.co/v1/merchant/funding \
  --header 'X-Api-Key: YOUR_API_KEY'

Response

data
object
required
Merchant funding details.
{
  "data": {
    "setup_status": "ACTIVE",
    "ngn_account": {
      "account_number": "0123456789",
      "account_name": "Acme Ltd",
      "bank_name": "Wema Bank",
      "bank_code": "035"
    },
    "crypto_wallet": {
      "wallet_id": "wallet_abc123",
      "addresses": [
        { "chain": "ETHEREUM", "address": "0xabcdef1234567890abcdef1234567890abcdef12" },
        { "chain": "BASE", "address": "0xabcdef1234567890abcdef1234567890abcdef12" },
        { "chain": "OPTIMISM", "address": "0xabcdef1234567890abcdef1234567890abcdef12" },
        { "chain": "BSC", "address": "0xabcdef1234567890abcdef1234567890abcdef12" },
        { "chain": "POLYGON", "address": "0xabcdef1234567890abcdef1234567890abcdef12" },
        { "chain": "APTOS", "address": "0xabcdef1234567890abcdef1234567890abcdef12" },
        { "chain": "TRON", "address": "TAbcdef1234567890abcdef1234567890ab" }
      ]
    }
  }
}

Notes

  • Merchant funding surfaces include a permanent NGN virtual account plus crypto deposit addresses.
  • NGN funding deposits are converted to USD at the current rate before crediting the merchant withdrawal balance.
  • Successful funding credits trigger an email notification to the merchant.