> ## Documentation Index
> Fetch the complete documentation index at: https://docs.daya.co/llms.txt
> Use this file to discover all available pages before exploring further.

# List funding accounts

> List funding accounts with optional filters

## Overview

Retrieve a paginated list of funding accounts for the authenticated merchant.

## Authentication

<ParamField header="X-Api-Key" type="string" required>
  Your merchant API key
</ParamField>

## Query Parameters

<ParamField query="customer_id" type="string">
  Filter by customer ID.
</ParamField>

<ParamField query="type" type="string">
  Filter by `TEMPORARY` or `PERMANENT`.
</ParamField>

<ParamField query="rail" type="string">
  Filter by `NGN_VIRTUAL_ACCOUNT` or `CRYPTO_ADDRESS`.
</ParamField>

<ParamField query="status" type="string">
  Filter by `PENDING`, `ACTIVE`, `FAILED`, or `DISABLED`.
</ParamField>

<ParamField query="page" type="integer">
  Page number. Default: `1`.
</ParamField>

<ParamField query="limit" type="integer">
  Results per page. Default: `50`. Max: `200`.
</ParamField>

## Request Example

```bash theme={null}
curl --request GET \
  --url 'https://api.daya.co/v1/funding-accounts?rail=NGN_VIRTUAL_ACCOUNT&status=ACTIVE' \
  --header 'X-Api-Key: YOUR_API_KEY'
```

## Response

Returns a paginated list of funding account objects. Each object includes `developer_fee.percentage`, which is the fee percentage used for deposits received through that funding account.
