Get all virtual Wallets for an Organization
curl --request GET \
--url https://api-dev-embedded.embedly.ng/embedded/api/v1/wallets/org/walletsimport requests
url = "https://api-dev-embedded.embedly.ng/embedded/api/v1/wallets/org/wallets"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api-dev-embedded.embedly.ng/embedded/api/v1/wallets/org/wallets', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-dev-embedded.embedly.ng/embedded/api/v1/wallets/org/wallets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api-dev-embedded.embedly.ng/embedded/api/v1/wallets/org/wallets"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-dev-embedded.embedly.ng/embedded/api/v1/wallets/org/wallets")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-dev-embedded.embedly.ng/embedded/api/v1/wallets/org/wallets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"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"
}
]
}
Virtual Wallets
Get all virtual Wallets for an Organization
This endpoint enables an organization retrieve all details for all Wallets under the organization
GET
/
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/walletsimport requests
url = "https://api-dev-embedded.embedly.ng/embedded/api/v1/wallets/org/wallets"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api-dev-embedded.embedly.ng/embedded/api/v1/wallets/org/wallets', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-dev-embedded.embedly.ng/embedded/api/v1/wallets/org/wallets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api-dev-embedded.embedly.ng/embedded/api/v1/wallets/org/wallets"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-dev-embedded.embedly.ng/embedded/api/v1/wallets/org/wallets")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-dev-embedded.embedly.ng/embedded/api/v1/wallets/org/wallets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"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
The unique identifier of your organization.
Example:
Example:
299b88c8-b13c-4336-8ed6-2ff4ab3e7f49Filter by wallet label.
Filter by start date (ISO 8601).
Example:
Example:
2025-06-01Filter by end date (ISO 8601).
Example:
Example:
2025-06-30Filter by frozen state.
Example:
Example:
trueThe page number to be returned.
Example:
Example:
1The number of items per page.
Example:
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"
}
]
}
⌘I