group_id is the unique ID of the group.
A successful response.
members are the members of the group with given group_id.
pagination defines the pagination in the response.
const response = await fetch('https://thor.nownodes.io/cosmos/group/v1/group_members/{group_id}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "members": [ { "group_id": "text", "member": { "address": "text", "weight": "text", "metadata": "text", "added_at": "2024-11-10T03:39:35.663Z" } } ], "pagination": { "next_key": "Ynl0ZXM=", "total": "text" } }