Jul
16
Thu
Annual Demo Day 2025
4:27 AM – 6:32 PM
Online
131 attending
Vereor thema occaecati. Caput universe curriculum fugiat cilicium supellex conitor dolores. Depopulo adiuvo tricesimus voro degusto solvo.
events / #105
4:27 AM – 6:32 PM
Online
131 attending
Vereor thema occaecati. Caput universe curriculum fugiat cilicium supellex conitor dolores. Depopulo adiuvo tricesimus voro degusto solvo.
curl -sS \
"https://example-data.com/api/v1/events/105" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/events/105"
);
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/105"
);
const event = (await res.json()) as Event;import requests
res = requests.get(
"https://example-data.com/api/v1/events/105"
)
event = res.json() {
"id": 105,
"title": "Annual Demo Day 2025",
"slug": "annual-demo-day-2025-105",
"description": "Vereor thema occaecati. Caput universe curriculum fugiat cilicium supellex conitor dolores. Depopulo adiuvo tricesimus voro degusto solvo.",
"location": "Online",
"isOnline": true,
"startAt": "2026-07-16T04:27:30.480Z",
"endAt": "2026-07-17T18:32:49.492Z",
"organizerUserId": 126,
"attendeeCount": 131,
"createdAt": "2026-02-28T01:54:25.438Z",
"updatedAt": "2026-04-02T17:25:14.131Z"
}