example-data.com

groups

groups

Page 3 of 4.

Hidden Coders

Size
8 members

Vulgivagus ventus odio.

Open Foodies

Size
5 members

Capillus inflammatio defessus.

Hidden Thinkers

Size
13 members

Corrupti omnis annus soluta ambulo antiquus adaugeo animi.

Modern Thinkers

Size
13 members

Praesentium animus pax cerno consuasor absens comptus.

Digital Minds

Size
14 members

Balbus accusantium atrocitas torqueo quam repellat caelestis ater voro conor.

Local Foodies

Size
11 members

Conicio aeternus fugiat verbera.

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": 49,
      "name": "Hidden Coders",
      "slug": "hidden-coders",
      "description": "Vulgivagus ventus odio.",
      "memberCount": 8,
      "isPublic": false,
      "ownerUserId": 89,
      "createdAt": "2024-07-08T04:29:17.241Z",
      "updatedAt": "2025-02-02T07:48:32.347Z"
    },
    {
      "id": 50,
      "name": "Open Foodies",
      "slug": "open-foodies",
      "description": "Capillus inflammatio defessus.",
      "memberCount": 5,
      "isPublic": true,
      "ownerUserId": 22,
      "createdAt": "2025-06-03T07:12:45.375Z",
      "updatedAt": "2026-01-15T06:55:26.041Z"
    },
    {
      "id": 51,
      "name": "Hidden Thinkers",
      "slug": "hidden-thinkers",
      "description": "Corrupti omnis annus soluta ambulo antiquus adaugeo animi.",
      "memberCount": 13,
      "isPublic": true,
      "ownerUserId": 208,
      "createdAt": "2024-12-08T13:05:42.636Z",
      "updatedAt": "2025-06-21T22:26:58.650Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 80,
    "totalPages": 4
  },
  "links": {
    "self": "/api/v1/groups?page=3",
    "next": "/api/v1/groups?page=4",
    "prev": "/api/v1/groups?page=2"
  }
}
Draftbit