Skip to main content
GET
https://api-dev-embedded.embedly.ng
/
embedded
/
api
/
v1
/
wallets
/
org
/
wallets
Get all virtual Wallets for an Organization
curl --request GET \
  --url https://api-dev-embedded.embedly.ng/embedded/api/v1/wallets/org/wallets
{
  "data": [
    {
      "id": "string",
      "orgId": "string",
      "businessId": null,
      "accountNumber": "string",
      "bankCode": "string",
      "type": "virtual",
      "isFrozen": true,
      "isExpired": false,
      "status": false,
      "expiresAt": null,
      "reason": null,
      "label": "string",
      "accountName": "Account name / customLabel",
      "dateCreated": "2025-06-16T10:35:22.234Z",
      "dateUpdated": "2025-06-16T10:44:34.571Z"
    }
  ]
}

Get All Virtual Wallets


orgId
string
required
The unique identifier of your organization.
Example: 299b88c8-b13c-4336-8ed6-2ff4ab3e7f49
label
string
Filter by wallet label.
startDate
string
Filter by start date (ISO 8601).
Example: 2025-06-01
endDate
string
Filter by end date (ISO 8601).
Example: 2025-06-30
isFrozen
boolean
Filter by frozen state.
Example: true
page
number
default:"1"
The page number to be returned.
Example: 1
limit
number
default:"10"
The number of items per page.
Example: 10
{
  "data": [
    {
      "id": "string",
      "orgId": "string",
      "businessId": null,
      "accountNumber": "string",
      "bankCode": "string",
      "type": "virtual",
      "isFrozen": true,
      "isExpired": false,
      "status": false,
      "expiresAt": null,
      "reason": null,
      "label": "string",
      "accountName": "Account name / customLabel",
      "dateCreated": "2025-06-16T10:35:22.234Z",
      "dateUpdated": "2025-06-16T10:44:34.571Z"
    }
  ]
}