example-data.com

groups

groups

Browse 80 groups records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

Local Designers

Size
14 members

Strenuus conor creo bene cattus desidero taedium aranea.

Open Builders

Size
11 members

Ratione cumque denuo.

Global Coders

Size
6 members

Thymbra quisquam venustas iusto conicio varius desolo thymum.

Digital Hackers

Size
14 members

Neque cognatus repellat facere corporis tabula adopto amo.

Open Minds

Size
6 members

Delibero demum defero tricesimus tempus barba pecus defleo.

Global Hackers

Size
8 members

Desparatus ipsa articulus suasoria conscendo accedo vita tonsor.

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/groups?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/groups?limit=25"
);
const { data, meta } = await res.json();
import type { Group, ListEnvelope } from "https://example-data.com/types/groups.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/groups?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Group>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/groups",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 1,
      "name": "Local Designers",
      "slug": "local-designers",
      "description": "Strenuus conor creo bene cattus desidero taedium aranea.",
      "memberCount": 14,
      "isPublic": false,
      "ownerUserId": 153,
      "createdAt": "2026-03-29T10:21:36.323Z",
      "updatedAt": "2026-04-20T15:06:59.949Z"
    },
    {
      "id": 2,
      "name": "Open Builders",
      "slug": "open-builders",
      "description": "Ratione cumque denuo.",
      "memberCount": 11,
      "isPublic": false,
      "ownerUserId": 47,
      "createdAt": "2024-12-23T01:00:11.975Z",
      "updatedAt": "2026-01-14T00:13:51.295Z"
    },
    {
      "id": 3,
      "name": "Global Coders",
      "slug": "global-coders",
      "description": "Thymbra quisquam venustas iusto conicio varius desolo thymum.",
      "memberCount": 6,
      "isPublic": false,
      "ownerUserId": 5,
      "createdAt": "2024-08-09T21:17:37.469Z",
      "updatedAt": "2024-10-24T09:12:09.285Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 80,
    "totalPages": 4
  },
  "links": {
    "self": "/api/v1/groups?page=1",
    "first": "/api/v1/groups?page=1",
    "last": "/api/v1/groups?page=4",
    "next": "/api/v1/groups?page=2",
    "prev": null
  }
}

View full response →

Draftbit