Skip to main content
GET
/
ramp
/
bank-accounts
List bank accounts
curl --request GET \
  --url https://api.etherfuse.com/ramp/bank-accounts \
  --header 'Authorization: <api-key>'
{
  "items": [
    {
      "abbrClabe": "•••• 0004",
      "bankAccountId": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "compliant": true,
      "createdAt": "2026-05-01T14:30:00Z",
      "currency": "MXN",
      "customerId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "etherfuseDepositClabe": "646180157000000004",
      "label": "Ana's SPEI account",
      "needsWork": false,
      "status": "active",
      "updatedAt": "2026-05-02T09:15:00Z"
    }
  ],
  "pageNumber": 0,
  "pageSize": 30,
  "totalItems": 42,
  "totalPages": 2,
  "next": "<string>"
}

Authorizations

Authorization
string
header
required

API key sent in the Authorization header.

Response

200 - application/json

Paginated bank accounts

A page of bank accounts.

items
object[]
required

The items on this page.

pageNumber
integer
required

Zero-based index of this page.

Required range: x >= 0
Example:

0

pageSize
integer
required

Number of items per page.

Required range: x >= 0
Example:

30

totalItems
integer
required

Total number of items across all pages.

Required range: x >= 0
Example:

42

totalPages
integer
required

Total number of pages.

Required range: x >= 0
Example:

2

next
string | null

URL to fetch the next page of results, if available.