Skip to main content
GET
/
v1
/
funding-accounts
/
{id}
Get a funding account
curl --request GET \
  --url https://api.daya.co/v1/funding-accounts/{id} \
  --header 'X-Api-Key: <x-api-key>'

Overview

Get one funding account for the authenticated merchant.

Authentication

X-Api-Key
string
required
Your merchant API key

Path Parameters

id
string
required
Funding account ID.

Request Example

curl --request GET \
  --url https://api.daya.co/v1/funding-accounts/750e8400-e29b-41d4-a716-446655440000 \
  --header 'X-Api-Key: YOUR_API_KEY'

Response

Returns the funding account object, including payment details and the active settlement destination. For NGN_VIRTUAL_ACCOUNT, the NGN bank account details are in instructions:
{
  "rail": "NGN_VIRTUAL_ACCOUNT",
  "currency": "NGN",
  "instructions": [
    {
      "type": "NGN_VIRTUAL_ACCOUNT",
      "status": "ACTIVE",
      "bank_name": "Wema Bank",
      "bank_code": "035",
      "account_number": "1234567890",
      "account_name": "Daya - Ada Lovelace",
      "currency": "NGN"
    }
  ]
}