example-data.com

groups / #10

Stellar Runners

Size
9 members

Virgo acidus aeneus aureus ex vestigium via conitor decor nobis.

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/groups/10" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/groups/10"
);
const group = await res.json();
import type { Group } from "https://example-data.com/types/groups.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/groups/10"
);
const group = (await res.json()) as Group;
import requests

res = requests.get(
    "https://example-data.com/api/v1/groups/10"
)
group = res.json()
{
  "id": 10,
  "name": "Stellar Runners",
  "slug": "stellar-runners",
  "description": "Virgo acidus aeneus aureus ex vestigium via conitor decor nobis.",
  "memberCount": 9,
  "isPublic": true,
  "ownerUserId": 7,
  "createdAt": "2024-06-15T21:56:29.615Z",
  "updatedAt": "2024-09-01T18:37:21.839Z"
}
Draftbit