Skip to main content
Returns all virtual accounts for your business with optional filtering.
GET /business/virtual-account

Query Parameters

currency
string
Filter by currency code (e.g. BRL, USD).
status
string
Filter by account status.
start_date
string
From date (ISO 8601).
q
string
Search query — account number, customer name, etc.
per_page
number
Results per page.
page
number
Page number.
curl -X GET 'https://api.yativo.com/api/v1/business/virtual-account?currency=BRL&per_page=20' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "status": "success",
  "status_code": 200,
  "message": "Request successful",
  "data": [
    {
      "account_id": "va_xxxxxx",
      "account_number": "9900123456",
      "account_type": "savings",
      "currency": "BRL",
      "customer_id": "da44a3e6-eb5d-429f-8d17-357aa5a6cdf2",
      "status": "active",
      "created_at": "2026-04-01T10:00:00Z"
    }
  ],
  "meta": {
    "total": 8,
    "per_page": 20,
    "current_page": 1,
    "last_page": 1
  }
}