diff --git a/explorer-v2/src/app/api/index.tsx b/explorer-v2/src/app/api/index.tsx index 621d51554b..6732143e6d 100644 --- a/explorer-v2/src/app/api/index.tsx +++ b/explorer-v2/src/app/api/index.tsx @@ -257,13 +257,13 @@ export const fetchNSApiNodes = async (): Promise => { while (hasMoreData) { const response = await fetch( - `${NS_API_NODES}?page=${page}&limit=${PAGE_SIZE}`, + `${NS_API_NODES}?page=${page}&size=${PAGE_SIZE}`, { headers: { Accept: "application/json", "Content-Type": "application/json; charset=utf-8", }, - }, + } ); if (!response.ok) {