example-data.com

groups

groups

Page 4 of 4.

Rising Makers

Size
10 members

Suscipit conspergo conqueror aperiam vulariter vulgus voluptatibus vorago capillus vociferor.

Bold Gems

Size
9 members

Trado caput sublime.

Local Explorers

Size
15 members

Audentia coepi vulnero in soluta tumultus conitor tero cavus occaecati.

Curious Foodies

Size
9 members

Tepidus cicuta beneficium aspicio.

Stellar Hackers

Size
6 members

Ancilla cum audeo exercitationem talus eligendi asperiores.

Bright Minds

Size
8 members

Charisma aro adsuesco ara curto delinquo traho adnuo deleo.

Showing first 6 of 8 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": 73,
      "name": "Rising Makers",
      "slug": "rising-makers",
      "description": "Suscipit conspergo conqueror aperiam vulariter vulgus voluptatibus vorago capillus vociferor.",
      "memberCount": 10,
      "isPublic": false,
      "ownerUserId": 227,
      "createdAt": "2024-05-29T02:41:24.769Z",
      "updatedAt": "2025-08-13T03:45:44.002Z"
    },
    {
      "id": 74,
      "name": "Bold Gems",
      "slug": "bold-gems",
      "description": "Trado caput sublime.",
      "memberCount": 9,
      "isPublic": true,
      "ownerUserId": 69,
      "createdAt": "2026-04-23T03:24:14.650Z",
      "updatedAt": "2026-05-15T16:25:43.735Z"
    },
    {
      "id": 75,
      "name": "Local Explorers",
      "slug": "local-explorers",
      "description": "Audentia coepi vulnero in soluta tumultus conitor tero cavus occaecati.",
      "memberCount": 15,
      "isPublic": true,
      "ownerUserId": 228,
      "createdAt": "2026-03-01T21:22:41.734Z",
      "updatedAt": "2026-04-17T10:26:50.666Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 80,
    "totalPages": 4
  },
  "links": {
    "self": "/api/v1/groups?page=4",
    "next": null,
    "prev": "/api/v1/groups?page=3"
  }
}
Draftbit