example-data.com

events / #20

Jul
30
Wed

Community Hackathon 2026

3:37 PM – 6:34 AM

Online

844 attending

Quas aequus conduco. Cur consuasor comminor atrocitas voluptates sonitus creptio anser. Corona voluptatem tertius defessus libero.

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/events/20" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/events/20"
);
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/20"
);
const event = (await res.json()) as Event;
import requests

res = requests.get(
    "https://example-data.com/api/v1/events/20"
)
event = res.json()
{
  "id": 20,
  "title": "Community Hackathon 2026",
  "slug": "community-hackathon-2026-20",
  "description": "Quas aequus conduco. Cur consuasor comminor atrocitas voluptates sonitus creptio anser. Corona voluptatem tertius defessus libero.",
  "location": "Online",
  "isOnline": true,
  "startAt": "2025-07-30T15:37:14.998Z",
  "endAt": "2025-07-31T06:34:37.840Z",
  "organizerUserId": 170,
  "attendeeCount": 844,
  "createdAt": "2025-08-02T00:41:45.369Z",
  "updatedAt": "2025-11-17T14:55:26.645Z"
}
Draftbit