Retrieve Group

GET
https://reloop.sh/api/contacts/v1/groups/:group_id

Path Parameters

group_idstringRequired
import { Reloop } from "reloop-email";

const reloop = new Reloop({ apiKey: "rl_123456789" });

const { response: group, error } = await reloop.contacts.getGroup("grp_123456789");
if (error) throw error;
{
  "object": "contact_group",
  "id": "grp_123456789",
  "name": "Beta Testers",
  "createdAt": "2026-03-27T10:00:00Z",
  "updatedAt": "2026-03-27T10:00:00Z"
}

Was this page helpful?

Edit this page