diff --git a/pages/api/index.ts b/pages/api/index.ts
index f601ac2..e5267a5 100644
--- a/pages/api/index.ts
+++ b/pages/api/index.ts
@@ -73,7 +73,13 @@ export async function fetchClientsPerPage(itemsPerPage, currentPage) {
return { count, data };
}
+export async function fetchStatistics() {
+ const res = await fetch(`https://api.datacapstats.io/api/getSimplifiedStats`);
+ const clients = await res.json();
+ console.log("clients", clients);
+ return clients;
+}
export async function fetchTotalClients() {
const res = await fetch(
`https://api.datacapstats.io/api/getVerifiedClients?limit=none`