example-data.com

events / #40

Nov
21
Sat

Summit Hackathon 2026

6:56 AM – 8:01 AM

Online

314 attending

Id coniecto defaeco cruentus nesciunt absum defungo trepide cribro. Aro velum aedificium succurro tibi bibo thorax derideo venio. Verus pauper animus vilis ventus capio.

Component variants

Related

Referenced by

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

const res = await fetch(
  "https://example-data.com/api/v1/events/40"
);
const event = (await res.json()) as Event;
import requests

res = requests.get(
    "https://example-data.com/api/v1/events/40"
)
event = res.json()
{
  "id": 40,
  "title": "Summit Hackathon 2026",
  "slug": "summit-hackathon-2026-40",
  "description": "Id coniecto defaeco cruentus nesciunt absum defungo trepide cribro. Aro velum aedificium succurro tibi bibo thorax derideo venio. Verus pauper animus vilis ventus capio.",
  "location": "Online",
  "isOnline": true,
  "startAt": "2026-11-21T06:56:40.323Z",
  "endAt": "2026-11-22T08:01:45.316Z",
  "organizerUserId": 142,
  "attendeeCount": 314,
  "createdAt": "2026-04-21T06:23:57.137Z",
  "updatedAt": "2026-05-17T01:37:29.062Z"
}
Draftbit