example-data.com

events / #23

Aug
29
Sat

Local Launch Party 2025

5:11 AM – 1:55 PM

Portland, OR

23 attending

Cresco peior demoror officiis. Mollitia aperio denuo circumvenio. Adulatio suggero contra aro succurro adstringo crudelis depraedor.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/events/23"
)
event = res.json()
{
  "id": 23,
  "title": "Local Launch Party 2025",
  "slug": "local-launch-party-2025-23",
  "description": "Cresco peior demoror officiis. Mollitia aperio denuo circumvenio. Adulatio suggero contra aro succurro adstringo crudelis depraedor.",
  "location": "Portland, OR",
  "isOnline": false,
  "startAt": "2026-08-29T05:11:44.498Z",
  "endAt": "2026-08-29T13:55:40.326Z",
  "organizerUserId": 36,
  "attendeeCount": 23,
  "createdAt": "2025-05-24T12:31:34.651Z",
  "updatedAt": "2025-06-13T04:56:41.342Z"
}
Draftbit